Reorganized file structure and namespaces
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user