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.
22 lines
352 B
22 lines
352 B
2 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Win_in.Sfs.Shared.Domain.Shared;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
public enum EnumStatus
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 关闭
|
||
|
/// </summary>
|
||
|
[Display(Name = "关闭")]
|
||
|
Close = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 打开
|
||
|
/// </summary>
|
||
|
[Display(Name = "打开")]
|
||
|
Open = 1
|
||
|
}
|