mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
17 lines
308 B
C#
17 lines
308 B
C#
![]() |
namespace Infrastructure.Const
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 定时任务状态
|
|||
|
/// </summary>
|
|||
|
public enum JobStatus
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 未启动
|
|||
|
/// </summary>
|
|||
|
NotRun,
|
|||
|
/// <summary>
|
|||
|
/// 正在运行
|
|||
|
/// </summary>
|
|||
|
Running
|
|||
|
}
|
|||
|
}
|