2022-12-02 15:03:34 +01:00

14 lines
311 B
C#

namespace Connected.Configuration.Authentication
{
internal class JwTokenConfiguration : IJwTokenConfiguration
{
public string? Issuer { get; set; }
public string? Audience { get; set; }
public string? Key { get; set; } = "D78RF30487F4G0F8Z34F834F";
public int Duration { get; set; } = 30;
}
}