namespace Easy.Admin.Application.Client.Dtos; public class ArticleOutput { /// /// 文章ID /// public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 栏目ID /// public long CategoryId { get; set; } /// /// 栏目名称 /// public string CategoryName { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 创作类型 /// public CreationType CreationType { get; set; } /// /// 简介 /// public string Summary { get; set; } /// /// 封面图 /// public string Cover { get; set; } /// /// 发布时间 /// public DateTime PublishTime { get; set; } /// /// 标签 /// public List Tags { get; set; } }