Files
mws.backend.dotnet/mws.infrastructure/Authentication/JwtOptions.cs
T

9 lines
305 B
C#
Raw Normal View History

2026-08-13 23:10:22 +07:00
namespace Mws.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);
}