26 lines
499 B
C#
26 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SWS.Share
|
|
{
|
|
/// <summary>
|
|
/// 动作。和状态是两码事情。
|
|
/// </summary>
|
|
public enum Action
|
|
{
|
|
新增 = 0,
|
|
修改 = 1,
|
|
准备删除 = 2,
|
|
撤销删除 = 3,
|
|
删除 = 4,
|
|
关联通道 = 5,
|
|
审核 = 6,
|
|
重新打开 = 7,
|
|
关联解除 = 8,
|
|
回收站恢复 = 9
|
|
}
|
|
}
|