Files
AIPS/dotnet/AipsCore/Infrastructure/Authentication/Jwt/JwtSettings.cs
2026-02-14 19:16:06 +01:00

10 lines
342 B
C#

namespace AipsCore.Infrastructure.Authentication.Jwt;
public sealed class JwtSettings
{
public string Issuer { get; init; } = null!;
public string Audience { get; init; } = null!;
public string Key { get; init; } = null!;
public int ExpirationMinutes { get; init; }
public int RefreshTokenExpirationDays { get; init; }
}