mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-04 23:39:33 +08:00
25 lines
547 B
C#
25 lines
547 B
C#
namespace Infrastructure
|
|
{
|
|
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; }
|
|
}
|
|
}
|