GiftBoxData.cs 842 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class ActivityOpenData
  5. {
  6. //活动开启配置
  7. public ActivityOpenCfg ActivityOpenCfgData;
  8. //活动结束时间戳
  9. public long ActivityEndTime;
  10. }
  11. /// <summary>
  12. /// 限时礼包列表数据模型
  13. /// </summary>
  14. public class LimitedTimeGiftBoxItemData
  15. {
  16. //限时礼包_ShopCfg的menu2
  17. public int IndexType;
  18. //只存同一个menu2的3条数据,超出忽略
  19. public List<int> ShopCfgIds;
  20. public long EndTime;
  21. }
  22. /// <summary>
  23. /// 圆形样式数据模型
  24. /// </summary>
  25. public class LimitedTimeGiftBoxItemYxData
  26. {
  27. public int ShopCfgId;
  28. //限时礼包_ShopCfg的menu2
  29. public int IndexType;
  30. public long EndTime;
  31. }
  32. }