mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-06 11:49:23 +00:00
19 lines
579 B
C#
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; }
|
|
|
|
}
|
|
}
|