namespace YD_Event.Application.Client.Dtos;
public class CategoryOutput
{
///
/// 栏目ID
///
public long Id { get; set; }
///
/// 父级ID
///
public long? ParentId { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 栏目名称
///
public string Name { get; set; }
///
/// 文章条数
///
public int Total { get; set; }
}