LuckyBoxBonusData.cs 194 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class LuckyBoxBonusData
  5. {
  6. public int id;
  7. public string name;
  8. public List<ItemData> itemList;
  9. }
  10. }