namespace Easy.Admin.Application.Client.Dtos; public class ArticleInfoOutput { /// /// 文章ID /// public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 文章内容 /// public string Content { get; set; } /// /// 简介 /// public string Summary { get; set; } /// /// 封面图 /// public string Cover { get; set; } /// /// 发布时间 /// public DateTime PublishTime { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 浏览量 /// public int Views { get; set; } /// /// 转载类型 /// public CreationType CreationType { get; set; } /// /// 是否允许评论 /// public bool IsAllowComments { get; set; } /// /// 是否是html /// public bool IsHtml { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 转载链接 /// public string Link { get; set; } /// /// 点赞数量 /// public int PraiseTotal { get; set; } /// /// 当前用户是否已点赞 /// public bool IsPraise { get; set; } /// /// 栏目Id /// public long CategoryId { get; set; } /// /// 栏目名称 /// public string CategoryName { get; set; } /// /// 最后更新时间 /// public DateTime? UpdatedTime { get; set; } /// /// 上一篇 /// public ArticleBasicsOutput Prev { get; set; } /// /// 下一篇 /// public ArticleBasicsOutput Next { get; set; } /// /// 随机 /// public List Random { get; set; } /// /// 标签 /// public List Tags { get; set; } }