| 12345678910111213141516 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- using MongoDB.Bson.Serialization.Options;
- namespace ET
- {
- public class UnitTimeLimitLuckyBoxInfo : Entity, IAwake, IDestroy, ISerializeToEntity
- {
- //活动id
- public int ActivityId;
-
- //抽奖活动奖励状态
- [BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
- public Dictionary<int, int> LuckyBoxBonusStatusDic = new Dictionary<int, int>();
- }
- }
|