namespace Easy.Admin.Application.Blog.Dtos;
public class CategoryPageOutput
{
///
/// 栏目ID
///
public long Id { get; set; }
///
/// 栏目名称
///
public string Name { get; set; }
///
/// 父级id
///
public long? ParentId { get; set; }
///
/// 封面图
///
public string Cover { get; set; }
///
/// 可用状态
///
public AvailabilityStatus Status { get; set; }
///
/// 排序值(值越小越靠前)
///
public int Sort { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 子栏目
///
public List Children { get; set; } = new();
}