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 SlackNotificationsViewModel : SlackNotificationSettings { /// /// Gets or sets the notification templates. /// /// /// The notification templates. /// public List NotificationTemplates { get; set; } } }