26 lines
483 B
C#
26 lines
483 B
C#
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,
|
|
}
|
|
}
|