12 lines
272 B
C#
12 lines
272 B
C#
namespace PostFundManagement.Domain.Api.Configuration;
|
|
|
|
public sealed class SecuritySettings
|
|
{
|
|
public string? Authority { get; set; }
|
|
|
|
public string? ClientId { get; set; }
|
|
|
|
public string? ClientSecret { get; set; }
|
|
|
|
public string? Audience { get; set; }
|
|
} |