17 lines
381 B
C#
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; }
|
|
}
|