27 lines
562 B
C#
27 lines
562 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 是否删除。1=删除;0=没删除。
|
|||
|
/// </summary>
|
|||
|
public enum IsDelete
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 1=删除
|
|||
|
/// </summary>
|
|||
|
[Description("1=删除")]
|
|||
|
Yes=1,
|
|||
|
/// <summary>
|
|||
|
/// 0=没删除
|
|||
|
/// </summary>
|
|||
|
[Description("0=没删除")]
|
|||
|
No=0
|
|||
|
}
|
|||
|
}
|