Files
Moonlight/Moonlight.Api/Infrastructure/Configuration/OidcOptions.cs

12 lines
424 B
C#

namespace Moonlight.Api.Infrastructure.Configuration;
public class OidcOptions
{
public string Authority { get; set; }
public bool RequireHttpsMetadata { get; set; } = true;
public bool DisableHttpsOnlyCookies { get; set; }
public string ResponseType { get; set; } = "code";
public string[]? Scopes { get; set; }
public string ClientId { get; set; }
public string ClientSecret { get; set; }
}