using JNPF.DependencyInjection;
using JNPF.Systems.Entitys.Model.Menu;
namespace JNPF.Systems.Entitys.Model.Authorize;
///
/// 权限功能模型.
///
[SuppressSniffer]
public class AuthorizeModel
{
///
/// 功能.
///
public List FunctionList { get; set; }
///
/// 按钮.
///
public List ButtonList { get; set; }
///
/// 视图.
///
public List ColumnList { get; set; }
///
/// 表单.
///
public List FormList { get; set; }
///
/// 资源.
///
public List ResourceList { get; set; }
}