using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Services.Enums
{
///
/// 操作权限级别
///
public enum OperationLevel
{
///
/// 只读
///
[Description("只读")]
ReadOnly = 10,
///
/// 读写
///
[Description("读写")]
ReadWrite = 20,
///
/// 完整
///
[Description("完整")]
Full = 30,
}
}