10 lines
283 B
C#
10 lines
283 B
C#
namespace Service.AppSettingModel;
|
|
|
|
public class JwtSettings
|
|
{
|
|
public string SecretKey { get; set; } = string.Empty;
|
|
public string Issuer { get; set; } = string.Empty;
|
|
public string Audience { get; set; } = string.Empty;
|
|
public int ExpirationHours { get; set; }
|
|
}
|