Files
WebNovelPortal/Treestar.Shared/Authentication/OIDC/OpenIdConnectAuthenticationOptions.cs

10 lines
326 B
C#

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