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.
25 lines
464 B
25 lines
464 B
1 year ago
|
namespace Win.Sfs.Shared.Enums
|
||
|
{
|
||
|
public enum EnumJobOptionAction
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 无
|
||
|
/// </summary>
|
||
|
None = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 警告
|
||
|
/// </summary>
|
||
|
Warning = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 要求确认
|
||
|
/// </summary>
|
||
|
Confirm = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 要求二次输入
|
||
|
/// </summary>
|
||
|
ReEnter = 3,
|
||
|
}
|
||
|
}
|