using Admin.Core.Model.Admin;
namespace Admin.Core.Service.Admin.Document.Input
{
public class DocumentAddMenuInput
{
///
/// 父级节点
///
public long ParentId { get; set; }
///
/// 类型
///
public DocumentType Type { get; set; }
///
/// 命名
///
public string Name { get; set; }
///
/// 名称
///
public string Label { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}