Initial_commit_SecMPS_v2

This commit is contained in:
2026-05-15 23:22:48 +08:00
commit 23ea4fe05f
13830 changed files with 298675 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
namespace VolPro.Core.Const
{
/// <summary>
/// 加密对应密钥Key
/// </summary>
public class Secret
{
/// <summary>
/// 用户密码加密key
/// </summary>
public string User { get; set; }
/// <summary>
/// 数据库加密key
/// </summary>
public string DB { get; set; }
/// <summary>
/// redis加密key
/// </summary>
public string Redis { get; set; }
/// <summary>
/// jwt加密key
/// </summary>
public string JWT { get; set; }
public string Audience { get; set; }
public string Issuer { get; set; }
/// <summary>
/// 导出文件加密key
/// </summary>
public string ExportFile = "C5ABA9E202D94C13A3CB66002BF77FAF";
}
}