Files
2024-08-16 20:15:11 +02:00

15 lines
468 B
C#

using System.Text.Json.Serialization;
namespace Net.Sdk.Web.Extensions.Azure.Options;
public sealed class AzureCredentialsOptions : IAzureClientSecretCredentialOptions
{
[JsonPropertyName(nameof(ClientSecret))]
public string ClientSecret { get; set; } = default!;
[JsonPropertyName(nameof(ClientId))]
public string ClientId { get; set; } = default!;
[JsonPropertyName(nameof(TenantId))]
public string TenantId { get; set; } = default!;
}