| 12345678910111213141516171819 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class MailStaticInfo : Entity, IAwake, IDestroy, IDeserialize
- {
- public string Tile { get; set; }
- public long TimeSec { get; set; }
- public string Content { get; set; }
- [BsonIgnore]
- public List<ItemInfo> ItemList = new List<ItemInfo>();
- }
- }
|