This commit is contained in:
22
Api/Dilon.Core/Enum/YesOrNot.cs
Normal file
22
Api/Dilon.Core/Enum/YesOrNot.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Dilon.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// 菜单激活类型
|
||||
/// </summary>
|
||||
public enum YesOrNot
|
||||
{
|
||||
/// <summary>
|
||||
/// 是
|
||||
/// </summary>
|
||||
[Description("是")]
|
||||
Y = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 否
|
||||
/// </summary>
|
||||
[Description("否")]
|
||||
N = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user