10 lines
297 B
C#
10 lines
297 B
C#
namespace MikrocopApi.Configuration;
|
|
|
|
public sealed class JwtOptions
|
|
{
|
|
public string Issuer { get; set; } = string.Empty;
|
|
public string Audience { get; set; } = string.Empty;
|
|
public string SigningKey { get; set; } = string.Empty;
|
|
public int ExpirationMinutes { get; set; } = 60;
|
|
}
|