Added the ability to send newsletter out to users that are not in Ombi

This commit is contained in:
Jamie 2018-04-07 00:26:05 +01:00
parent 386f5b1550
commit 5942645045
5 changed files with 61 additions and 1 deletions

View file

@ -1,9 +1,12 @@
namespace Ombi.Settings.Settings.Models.Notifications
using System.Collections.Generic;
namespace Ombi.Settings.Settings.Models.Notifications
{
public class NewsletterSettings : Settings
{
public bool DisableTv { get; set; }
public bool DisableMovies { get; set; }
public bool Enabled { get; set; }
public List<string> ExternalEmails { get; set; }
}
}