mirror of
https://github.com/AlexMacocian/Net.Sdk.Web.Extensions.git
synced 2026-07-15 13:39:29 +00:00
9 lines
166 B
C#
9 lines
166 B
C#
namespace Net.Sdk.Web.Extensions.Azure.Options;
|
|
|
|
public interface IAzureCredentialOptions
|
|
{
|
|
string ClientId { get; set; }
|
|
|
|
string TenantId { get; set; }
|
|
}
|