RoleAlbumComponent.cs 357 B

123456789101112
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class RoleAlbumComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
  6. {
  7. [BsonIgnore] public Dictionary<long, RoleAlbumInfo> RoleAlbumDic = new Dictionary<long, RoleAlbumInfo>();
  8. public string StrId = "";
  9. }
  10. }