23 lines
549 B
C#
23 lines
549 B
C#
namespace LiteCharms.Features.Api.Configuration;
|
|
|
|
public sealed class AuthentikSettings
|
|
{
|
|
public string? Authority { get; set; }
|
|
|
|
public string? IntrospectionEndpoint { get; set; }
|
|
|
|
public string? MetadataEndpoint { get; set; }
|
|
|
|
public string? RevokationEndpoint { get; set; }
|
|
|
|
public string? ClientId { get; set; }
|
|
|
|
public string? ClientSecret { get; set; }
|
|
|
|
public string? RequiredClaimName { get; set; }
|
|
|
|
public string? RequiredClaimNameValue { get; set; }
|
|
|
|
public bool RequireHttpsMetadata { get; set; }
|
|
}
|