using ZhonTai.Admin.Domain.Document;
namespace ZhonTai.Admin.Services.Document.Dto
{
public class DocumentAddGroupInput
{
///
/// 父级节点
///
public long ParentId { get; set; }
///
/// 类型
///
public DocumentTypeEnum Type { get; set; }
///
/// 名称
///
public string Label { get; set; }
///
/// 命名
///
public string Name { get; set; }
///
/// 打开
///
public bool? Opened { get; set; }
}
}