StudioInfosComponent.cs 626 B

1234567891011121314151617181920
  1. using MongoDB.Bson.Serialization.Attributes;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. public class StudioInfosComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
  6. {
  7. [BsonIgnore] public Dictionary<int, StudioInfo> StudioInfosDic = new Dictionary<int, StudioInfo>();
  8. [BsonIgnore] public S2C_FilingScoreBonusChanged S2C_FilingScoreBonusChanged = new S2C_FilingScoreBonusChanged();
  9. //瓷器修复主题
  10. public int RepairPorcelainTheme;
  11. //瓷器修复章节Id
  12. public int RepairPorcelainChapterId;
  13. public string StrId = "";
  14. }
  15. }