9 lines
293 B
C#
9 lines
293 B
C#
namespace AipsCore.Infrastructure.Persistence.Authentication;
|
|
|
|
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; }
|
|
} |