using ZhonTai.Admin.Domain.Document;
namespace ZhonTai.Admin.Services.Document.Dto;
public class DocumentListOutput
{
///
/// 编号
///
public long Id { get; set; }
///
/// 父级节点
///
public long ParentId { get; set; }
///
/// 名称
///
public string Label { get; set; }
///
/// 类型
///
public DocumentType Type { get; set; }
///
/// 命名
///
public string Name { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 组打开
///
public bool? Opened { get; set; }
}