添加项目文件。

This commit is contained in:
glz
2026-06-01 13:42:40 +08:00
parent 435474c5fe
commit bba985f937
56 changed files with 3758 additions and 0 deletions

View File

@ -0,0 +1,27 @@
namespace QYZH.InteractiveMagazine.Models.Settings;
/// <summary>
/// JWT配置
/// </summary>
public class JwtSettings
{
/// <summary>
/// 颁发者
/// </summary>
public string? Issuer { get; set; }
/// <summary>
/// 接收者
/// </summary>
public string? Audience { get; set; }
/// <summary>
/// 密钥
/// </summary>
public string? SecretKey { get; set; }
/// <summary>
/// 过期时间(分钟)
/// </summary>
public int ExpiryMinutes { get; set; }
}