Ombi/src/Ombi.Settings/Settings/Models/Notifications/NewsletterSettings.cs

13 lines
No EOL
414 B
C#

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 DisableMusic { get; set; }
public bool Enabled { get; set; }
public List<string> ExternalEmails { get; set; } = new List<string>();
}
}