10 lines
310 B
C#
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; }
|
|
}
|