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