more wip on whatsapp

This commit is contained in:
Jamie Rees 2020-02-01 22:32:36 +00:00
commit 0c7b6a8ed0
14 changed files with 289 additions and 100 deletions

View file

@ -1,10 +1,15 @@
namespace Ombi.Settings.Settings.Models.Notifications
{
public class WhatsAppSettings : Settings
public class TwilioSettings : Settings
{
public WhatsAppSettings WhatsAppSettings { get; set; }
}
public class WhatsAppSettings
{
public bool Enabled { get; set; }
public string From { get; set; }
public string AccountSid { get; set; }
public string AuthToken { get; set; }
public string From { get; set; }
}
}