| 123456789101112 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class RoleAlbumComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
- {
- [BsonIgnore] public Dictionary<long, RoleAlbumInfo> RoleAlbumDic = new Dictionary<long, RoleAlbumInfo>();
- public string StrId = "";
- }
- }
|