18 lines
461 B
C#
18 lines
461 B
C#
namespace Marco.Pms.Model.Authentication
|
|
{
|
|
public class JwtSettings
|
|
{
|
|
public string? Key { get; set; }
|
|
public string? Issuer { get; set; }
|
|
public Audience? Audience { get; set; }
|
|
public int ExpiresInMinutes { get; set; }
|
|
public int RefreshTokenExpiresInDays { get; set; }
|
|
}
|
|
|
|
public class Audience
|
|
{
|
|
public string? WebApp { get; set; }
|
|
public string? MobileApp { get; set; }
|
|
}
|
|
}
|