web-app-template/backend/app/app.Configuration/AuthentificationSettings.cs

11 lines
324 B
C#
Raw Permalink Normal View History

2022-02-20 13:43:25 +01:00
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; }
}
}