namespace WebNovelPortal.Authentication; public class OpenIdConnectAuthenticationOptions { public const string ConfigurationSection = "OIDCAuthOptions"; public string Authority { get; set; } public string ClientId { get; set; } public string ClientSecret { get; set; } public string Scopes { get; set; } }