| 1234567891011121314151617 |
- using VberZero;
- using VberZero.Tools;
- namespace VberAdmin;
- public class VberAdminConsts : VzConsts
- {
- public const string ConnectionStringName = "Default";
- public const bool MultiLanguageEnabled = true;
- public const string AspNetCoreCookieName = "VberAdmin.AspNetCore.Identity.Application";
- /// <summary>
- /// SimpleStringCipher 解密/加密操作的默认密码短语
- /// </summary>
- public static readonly string DefaultPassPhrase =
- DebugHelper.IsDebug ? "gsKxGZ012HLL3MI5" : "0BE9EE7407674630871D7E56218D75F0";
- }
|