| 123456789101112131415161718192021 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Options;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class UnitLuckyBoxComponent : Entity, IAwake, IDestroy, IUnitCache, ITransfer, IDeserialize
- {
- public string StrId = "";
- //各奖池抽奖次数永久记录,不可重置
- [BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
- public Dictionary<int, long> LuckyBoxPlayTimesDic = new Dictionary<int, long>();
- //免费抽奖时间戳
- [BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
- public Dictionary<int, long> LuckyBoxFreeTimeMillDic = new Dictionary<int, long>();
- [BsonIgnore] public S2C_NoticeLuckyBoxFreeTime S2C_NoticeLuckyBoxFreeTime = new S2C_NoticeLuckyBoxFreeTime();
- }
- }
|