using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using iMES.Entity; using Newtonsoft.Json.Linq; namespace iMES.Entity.DomainModels { public class NoticeOutput { /// /// 标题 /// public string title { get; set; } /// /// 内容 /// public string message { get; set; } /// /// 日期 /// public string date { get; set; } } }