| 12345678910111213141516171819202122 |
- using System.Collections.Generic;
- namespace ET
- {
- public class ActivityInfo : Entity, IAwake, ISerializeToEntity
- {
- public int ActivityId;
- public long StartTime;
- public long EndTime;
- //已领取奖励的id
- public List<int> GetRewardIds = new List<int>();
- //计数值
- public long CountValue;
- //是否已关闭,用于活动复刻
- public bool Closed;
- }
- }
|