mirror of
https://github.com/AlexMacocian/Net.Sdk.Web.Extensions.git
synced 2026-07-16 22:19:29 +00:00
15 lines
468 B
C#
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!;
|
|
} |