using System.Collections.Generic; using MongoDB.Bson.Serialization.Attributes; namespace ET { public class SystemNoticeStatusComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache { //已读的公告id列表 public List ReadedNotices = new List(); [BsonIgnore] public M2C_SystemNoticeChanged M2C_SystemNoticeChanged = new M2C_SystemNoticeChanged(); [BsonIgnore] public M2C_SystemNoticeRemoved M2C_SystemNoticeRemoved = new M2C_SystemNoticeRemoved(); } }