using System.Collections.Generic; using Ombi.Settings.Settings.Models.Notifications; using Ombi.Store.Entities; namespace Ombi.Core.Models.UI { /// /// The view model for the notification settings page /// /// public class NewsletterNotificationViewModel : NewsletterSettings { /// /// Gets or sets the notification templates. /// /// /// The notification templates. /// public NotificationTemplates NotificationTemplate { get; set; } } }