9 lines
227 B
C#
9 lines
227 B
C#
namespace AcaMate.Common.Models;
|
|
|
|
public class JwtSettings
|
|
{
|
|
public string SecretKey { get; set; }
|
|
public string Issuer { get; set; }
|
|
public string Audience { get; set; }
|
|
public int ExpiryMinutes { get; set; }
|
|
} |