9 lines
320 B
C#
9 lines
320 B
C#
namespace mws.backend.dotnet.infrastructure.Authentication;
|
|
|
|
public class JwtOptions
|
|
{
|
|
public string Secret { get; set; } = string.Empty;
|
|
public string Issuer { get; set; } = "Mws";
|
|
public string Audience { get; set; } = "Mws.Clients";
|
|
public TimeSpan Expiration { get; set; } = TimeSpan.FromHours(12);
|
|
} |