namespace LiteCharms.Features.Api.Configuration; public sealed class AuthentikSettings { public string? Authority { get; set; } public string? IntrospectionUrl { 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; } }