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.
34 lines
681 B
34 lines
681 B
2 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.WebApi.Config
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// HangFire定时任务相关
|
||
|
/// </summary>
|
||
|
public enum HangFireQueuesConfig
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 默认
|
||
|
/// </summary>
|
||
|
[Description("默认")]
|
||
|
@default = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 接口
|
||
|
/// </summary>
|
||
|
[Description("接口")]
|
||
|
apis = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 网站
|
||
|
/// </summary>
|
||
|
[Description("网站")]
|
||
|
web = 3,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 循环时间
|
||
|
/// </summary>
|
||
|
[Description("循环时间")]
|
||
|
recurring = 4,
|
||
|
}
|
||
|
}
|