8 lines
254 B
C#
8 lines
254 B
C#
namespace Common.Authentication.JwtBearer;
|
|
|
|
public class JwtBearerAuthenticationOptions
|
|
{
|
|
public const string ConfigrationSection = "JwtBearerAuthOptions";
|
|
public string Authority { get; set; } = null!;
|
|
public string? Audience { get; set; }
|
|
} |