namespace LiteCharms.Features.Api.Configuration; public sealed class AuthentikSettings { public string? Authority { get; set; } public string? IntrospectionUrl { get; set; } public string? ApiResourceName { get; set; } public string? ApiResourceSecret { get; set; } public string? RequiredClaimName { get; set; } public string? RequiredClaimNameValue { get; set; } public bool RequireHttpsMetadata { get; set; } }