ZrAdminNetCore/Infrastructure/GlobalConstant.cs
2021-08-23 16:57:25 +08:00

18 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Infrastructure
{
/// <summary>
/// 全局静态常量
/// </summary>
public class GlobalConstant
{
/// <summary>
/// 管理员权限
/// </summary>
public static string AdminPerm = "*:*:*";
}
}