UIStandardWebApi/UIStandardWebApi/Common/JwtService/JWTTokenOptions.cs
2025-04-08 08:41:01 +08:00

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; }
}
}