Files
Khwezi Mngoma dc4addb43a
continuous-integration/drone/pr Build is passing
Removed required scope policy, no longer needed, audience covers the intent
2026-06-06 16:44:22 +02:00

13 lines
272 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; }
}