namespace Easy.Admin.Application.Blog.Dtos; public class ArticlePageOutput { /// /// 文章ID /// public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 封面 /// public string Cover { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } /// /// 创作类型 /// public CreationType CreationType { get; set; } /// /// 发布时间 /// public DateTime PublishTime { get; set; } /// /// 浏览次数 /// public int Views { get; set; } /// /// 栏目名称 /// public string CategoryName { get; set; } }