namespace Admin.Core.Service.Admin.Dictionary.Input
{
    /// 
    /// 添加
    /// 
    public class DictionaryAddInput
    {
        /// 
        /// 字典父级
        /// 
		public long ParentId { get; set; }
        /// 
        /// 字典名称
        /// 
        public string Name { get; set; }
        /// 
        /// 字典编码
        /// 
        public string Code { get; set; }
        /// 
        /// 字典值
        /// 
        public string Value { get; set; }
        /// 
        /// 描述
        /// 
        public string Description { get; set; }
        /// 
        /// 启用
        /// 
		public bool Enabled { get; set; }
    }
}