using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 状态
///
public enum Status
{
///
/// 启用
///
[Description("启用")]
Enable = 1,
///
/// 停用
///
[Description("停用")]
Disable = 0
}
///
/// 审核状态
///
public enum Audit
{
///
/// 已审核
///
[Description("已审核")]
Audited = 1,
///
/// 未审核
///
[Description("未审核")]
UnAudited = 0
}
public enum YesOrNo
{
///
/// 是
///
[Description("已屏蔽")]
Yes = 1,
///
/// 否
///
[Description("否")]
No = 0
}
}