using Admin.Core.Model.Admin; namespace Admin.Core.Service.Admin.Document.Output { public class DocumentListOutput { /// /// 编号 /// public long Id { get; set; } /// /// 父级节点 /// public int 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; } } }