| 123456789101112131415161718192021222324252627282930313233343536373839 |
- namespace VberZero;
- public class VzConsts
- {
- public const string LocalizationSourceName = "VberZero";
- public const bool MultiTenancyEnabled = true;
- public const string DefaultLanguage = "zh-Hans";
- public const string DefaultUiTheme = "Vber";
- public const string LocalizationCookieName = "VberAdmin.AspNetCore.Culture";
- public const int PrimaryKey = 32;
- public const string SwaggerUiEndPoint = "/swagger";
- public static bool SwaggerUiEnabled = true;
- public const string OAuthTokenUrl = "/auth/token";
- public const string AuthPropertiesFunName = "FUN";
- public const int SignInExpireMinutes = 60;
- public const string FunRootName = "HTSystem";
- public const string TreeRootParentNo = null!;
- public const string TreeRootNo = "0";
- public const string ResourceBasePath = "Resources/";
- public const string AppApiName = "app";
- public static readonly string ApiAppUrl = $"/api/services/{AppApiName}/";
- #region Cache
- public const string CacheAuditLogDesc = "AuditLogDescCache";
- public const string CacheSysState = "SysStateCache";
- public const string CacheSystemUser = "SystemUserCache";
- public const string CacheFunction = "FunctionCache";
- public const string CachePermissionFunction = "PermissionFunctionCache";
- public const string CacheSysHelp = "SysHelpCache";
- #endregion Cache
- }
|