12 lines
311 B
C#
12 lines
311 B
C#
namespace ManagementApp.AServices.Microsoft365
|
|
{
|
|
public class Microsoft365Options
|
|
{
|
|
public string TenantID { set; get; } = "";
|
|
public string ClientID { set; get; } = "";
|
|
|
|
public string SecretValue { set; get; } = "";
|
|
public string SecretID { set; get; } = "";
|
|
}
|
|
}
|