Files

9 lines
320 B
C#
Raw Permalink Normal View History

2026-08-19 23:25:08 +07:00
namespace mws.backend.dotnet.infrastructure.Authentication;
2026-08-13 23:10:22 +07:00
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);
}