web-app-template/backend/app/app.Configuration/AuthentificationSettings.cs
2022-02-20 13:57:55 +01:00

11 lines
324 B
C#

namespace app.Configuration
{
public class AuthentificationSettings
{
public string SecretKey { get; set; }
public string Issuer { get; set; }
public string Audience { get; set; }
public int TokenExpireTime { get; set; }
public int RefreshTokenExpireTime { get; set; }
}
}