Files
mws.backend.dotnet/infrastructure/Authentication/JwtOptions.cs
T
2026-08-19 23:25:08 +07:00

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);
}