sp-dev-fx-webparts/samples/react-realtime-incidentdash.../backend/O365Clinic.Function.Webhooks/Model/AzureFunctionSettings.cs

19 lines
579 B
C#

using System.Security.Cryptography.X509Certificates;
namespace O365Clinic.Function.Webhooks.Models
{
public class AzureFunctionSettings
{
public string TenantId { get; set; }
public string TenantBaseUrl { get; set; }
public string ClientId { get; set; }
public string ClientSecret { get; set; }
public string CertificateThumbprint { get; set; }
public string CertificateName { get; set; }
public string SiteUrl { get; set; }
public string WebhookUrl { get; set; }
}
}