SystemNoticeStatusComponent.cs 534 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class SystemNoticeStatusComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache
  6. {
  7. //已读的公告id列表
  8. public List<int> ReadedNotices = new List<int>();
  9. [BsonIgnore]
  10. public M2C_SystemNoticeChanged M2C_SystemNoticeChanged = new M2C_SystemNoticeChanged();
  11. [BsonIgnore]
  12. public M2C_SystemNoticeRemoved M2C_SystemNoticeRemoved = new M2C_SystemNoticeRemoved();
  13. }
  14. }