| 12345678910111213 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class RedPacketComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
- {
- [BsonIgnore]
- public Dictionary<int, RedPacketInfo> PacketInfosDic = new Dictionary<int,RedPacketInfo>();
- public int doubleActivityId;
- }
- }
|