UnitTimeLimitLuckyBoxInfo.cs 495 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. using MongoDB.Bson.Serialization.Options;
  4. namespace ET
  5. {
  6. public class UnitTimeLimitLuckyBoxInfo : Entity, IAwake, IDestroy, ISerializeToEntity
  7. {
  8. //活动id
  9. public int ActivityId;
  10. //抽奖活动奖励状态
  11. [BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
  12. public Dictionary<int, int> LuckyBoxBonusStatusDic = new Dictionary<int, int>();
  13. }
  14. }