mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
13 lines
No EOL
414 B
C#
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>();
|
|
}
|
|
} |