mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
转移.net core 3.1,为.NET 5做准备
This commit is contained in:
24
Infrastructure/KeyDescription.cs
Normal file
24
Infrastructure/KeyDescription.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user