Infrastructure/OpenAuth.App/Const/EnumInfo.cs

26 lines
483 B
C#
Raw Normal View History

2025-03-21 16:42:48 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Const
{
class EnumInfo
{
}
/// <summary>
/// 任务状态
/// </summary>
public enum TaskState
{
[Description("待接收")]
= 1,
[Description("已接收")]
= 2,
[Description("已完成")]
= 3,
}
}