using System; namespace SCC.Models { public class LotteryGlossaryModel { /// /// id /// public string ID { get; set; } /// /// 类型Id /// public LotteryGlossaryType TypeID { get; set; } /// /// 类型名称 /// public string TypeName { get; set; } /// /// 标题名称 /// public string Title { get; set; } /// /// 增加时间 /// public DateTime AddTime { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 内容来源地址 /// public string SourceUrl { get; set; } /// /// 是否删除 /// public bool IsDelete { get; set; } } }