MailStaticInfo.cs 374 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class MailStaticInfo : Entity, IAwake, IDestroy, IDeserialize
  6. {
  7. public string Tile { get; set; }
  8. public long TimeSec { get; set; }
  9. public string Content { get; set; }
  10. [BsonIgnore]
  11. public List<ItemInfo> ItemList = new List<ItemInfo>();
  12. }
  13. }