You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
311 B
14 lines
311 B
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;
|
|
}
|
|
}
|