12 lines
275 B
C#
12 lines
275 B
C#
namespace PostFundManagement.Infrastructure.Configuration;
|
|
|
|
public sealed class MachineIdentity
|
|
{
|
|
public string? Authority { get; set; }
|
|
|
|
public string? Audience { get; set; }
|
|
|
|
public string? ClientId { get; set; }
|
|
|
|
public string? ClientSecret { get; set; }
|
|
} |