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

24 lines
399 B

5 months ago
using System.ComponentModel;
namespace Common.Enum
{
/// <summary>
/// 是否枚举
/// </summary>
[Description("是否枚举")]
public enum YesNoEnum
{
/// <summary>
/// 是
/// </summary>
[Description("是")]
Y = 1,
/// <summary>
/// 否
/// </summary>
[Description("否")]
N = 2
}
}