using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.Norm.Response { /// /// 公众号文章列表模型 /// public class ArticleListModel { [Display(Name = "Id")] public int Id { get; set; } /// /// 文章标题 /// [Display(Name = "文章标题")] public string Title { get; set; } /// /// 摘要 /// [Display(Name = "摘要")] public string Abstract { get; set; } /// /// 封面图 /// [Display(Name = "封面图")] public string CoverImage { get; set; } /// /// 文章地址 /// [Display(Name = "文章地址")] public string ArticleUrl { get; set; } /// /// 更新时间 /// [Display(Name = "更新时间")] public DateTime UpdateDate { get; set; } } }