Files
TenWholeYears.Server/RecNet.Infrastructure/Services/Tokens/JwtOptions.cs

10 lines
308 B
C#

namespace RecNet.Infrastructure.Services.Tokens;
public class JwtOptions
{
public string Secret { get; set; } = string.Empty;
public string Issuer { get; set; } = "http://localhost:5155";
public string Audience { get; set; } = "TenWholeYears";
public int ExpiryMinutes { get; set; } = 60;
}