11 lines
299 B
C#
11 lines
299 B
C#
|
|
namespace OTSSignsOrchestrator.Server.Auth;
|
||
|
|
|
||
|
|
public class JwtOptions
|
||
|
|
{
|
||
|
|
public const string Section = "Jwt";
|
||
|
|
|
||
|
|
public string Key { get; set; } = string.Empty;
|
||
|
|
public string Issuer { get; set; } = "OTSSignsOrchestrator";
|
||
|
|
public string Audience { get; set; } = "OTSSignsOrchestrator";
|
||
|
|
}
|