using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 权限等级
///
public enum eAuthLevel
{
///
/// 完全控制
///
All = 0,
///
/// 只读
///
ReadOnly = 1,
}
}