namespace LiteCharms.Features.Api.Configuration; public sealed class LiteCharmsClientSettings { public string? Authority { get; set; } public string? GrantType { get; set; } public string? ClientId { get; set; } public string? ClientSecret { get; set; } public string? Scope { get; set; } }