15 lines
319 B
C#
15 lines
319 B
C#
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; }
|
|
}
|