You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
533 B
C#

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