Started on whatsapp

This commit is contained in:
tidusjar 2020-01-11 00:41:55 +00:00
parent f08033f743
commit 952db09e28
16 changed files with 264 additions and 4 deletions

View file

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