namespace Common.Utilities { public class KeyDescription { /// /// 键值 /// public string Key { get; set; } /// /// 键的描述 /// public string Description { get; set; } /// /// 前端是否显示 /// public bool Browsable { get; set; } /// /// 字段类型 /// public string Type { get; set; } } }