8 lines
240 B
C#
8 lines
240 B
C#
|
|
namespace Brizco.Identity.Api.Models;
|
|||
|
|
|
|||
|
|
public class JwtSettings
|
|||
|
|
{
|
|||
|
|
public string SecretKey { get; set; } = string.Empty;
|
|||
|
|
public string Audience { get; set; } = string.Empty;
|
|||
|
|
public string Issuer { get; set; } = string.Empty;
|
|||
|
|
}
|