Files
blazor-saas-hrm/Infrastructure/Authentication/Identity/JwtSettingsModel.cs
T
2026-07-21 14:22:06 +07:00

10 lines
310 B
C#

namespace Indotalent.Infrastructure.Authentication.Identity;
public class JwtSettingsModel
{
public string Key { get; set; } = string.Empty;
public string Issuer { get; set; } = string.Empty;
public string Audience { get; set; } = string.Empty;
public int DurationInMinutes { get; set; }
}