| 1234567891011121314151617181920 |
- using MongoDB.Bson.Serialization.Attributes;
- using System.Collections.Generic;
- namespace ET
- {
- public class StudioInfosComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
- {
- [BsonIgnore] public Dictionary<int, StudioInfo> StudioInfosDic = new Dictionary<int, StudioInfo>();
- [BsonIgnore] public S2C_FilingScoreBonusChanged S2C_FilingScoreBonusChanged = new S2C_FilingScoreBonusChanged();
- //瓷器修复主题
- public int RepairPorcelainTheme;
- //瓷器修复章节Id
- public int RepairPorcelainChapterId;
- public string StrId = "";
- }
- }
|