Files
MikaltoResort/ManagementApp/AServices/Microsoft365/Microsoft365Options.cs
2025-06-04 14:17:32 +07:00

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; } = "";
}
}