GiftBoxData.cs 860 B

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