using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Core.Enums
{
public enum AuthorityScopeEnum
{
///
/// 无
///
None = -1,
///
/// 仅自己
///
OnlySelf = 1,
///
/// 当前角色
///
CurrentRole = 2,
///
/// 当前角色及以下
///
CurrentRoleAndDown = 3,
///
/// 自定义
///
Custom = 4,
///
/// 所有
///
All = 10
}
}