using Admin.Core.Model.Admin;
namespace Admin.Core.Service.Admin.Document.Input
{
    public class DocumentAddGroupInput
    {
        /// 
        /// 父级节点
        /// 
        public int ParentId { get; set; }
        /// 
        /// 类型
        /// 
        public DocumentType Type { get; set; }
        /// 
        /// 名称
        /// 
        public string Label { get; set; }
        /// 
        /// 命名
        /// 
        public string Name { get; set; }
        /// 
        /// 打开
        /// 
        public bool? Opened { get; set; }
    }
}