You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
940 B
C#

namespace EntrustSettle
{
/// <summary>
/// 权限变量配置
/// </summary>
public static class Permissions
{
public const string Name = "Permission";
/// <summary>
/// 当前项目是否启用IDS4权限方案
/// true表示启动IDS4
/// false表示使用JWT
public static bool IsUseIds4 = false;
}
/// <summary>
/// 路由变量前缀配置
/// </summary>
public static class RoutePrefix
{
/// <summary>
/// 前缀名
/// 如果不需要,尽量留空,不要修改
/// 除非一定要在所有的 api 前统一加上特定前缀
/// 前缀在appsettings.json中配置
/// </summary>
public static string Name = "";
}
/// <summary>
/// RedisMqKey
/// </summary>
public static class RedisMqKey
{
public const string Loging = "Loging";
}
}