29 lines
528 B
C#
29 lines
528 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UtilLib
|
|
{
|
|
public enum AcceptEnum
|
|
{
|
|
/// <summary>
|
|
/// 默认(未处理)
|
|
/// </summary>
|
|
Default = 0,
|
|
/// <summary>
|
|
/// 复核
|
|
/// </summary>
|
|
Review = 1,
|
|
/// <summary>
|
|
/// 采纳
|
|
/// </summary>
|
|
Accept = 2,
|
|
/// <summary>
|
|
/// 忽略
|
|
/// </summary>
|
|
Ignore = 3
|
|
}
|
|
}
|