RedPacketComponent.cs 370 B

12345678910111213
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class RedPacketComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
  6. {
  7. [BsonIgnore]
  8. public Dictionary<int, RedPacketInfo> PacketInfosDic = new Dictionary<int,RedPacketInfo>();
  9. public int doubleActivityId;
  10. }
  11. }