Files
components/LiteCharms.Features/Api/Configuration/LiteCharmsSettings.cs
T
Khwezi Mngoma 5d5b59d610
continuous-integration/drone/pr Build is passing
Updated API to use LiteCharms Security
2026-06-06 16:26:27 +02:00

17 lines
381 B
C#

namespace LiteCharms.Features.Api.Configuration;
public sealed class LiteCharmsSettings
{
public string? Authority { get; set; }
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
public string? Audience { get; set; }
public string? RequiredClaimName { get; set; }
public string? RequiredClaimNameValue { get; set; }
}