12 lines
238 B
C#
12 lines
238 B
C#
namespace UIStandardWebApi.Common.JwtService
|
|
{
|
|
public class JWTTokenOptions
|
|
{
|
|
public string? Audience { get; set; }
|
|
|
|
public string? SecurityKey { get; set; }
|
|
|
|
public string? Issuer { get; set; }
|
|
}
|
|
}
|