Added Pushbullet notifications #1459 #865

This commit is contained in:
Jamie.Rees 2017-08-03 15:01:45 +01:00
parent 457ea103d8
commit da5a4b0641
20 changed files with 463 additions and 7 deletions

View file

@ -0,0 +1,23 @@

using System.Collections.Generic;
using Ombi.Settings.Settings.Models.Notifications;
using Ombi.Store.Entities;
namespace Ombi.Core.Models.UI
{
/// <summary>
/// The view model for the notification settings page
/// </summary>
/// <seealso cref="DiscordNotificationSettings" />
public class PushbulletNotificationViewModel : PushbulletSettings
{
/// <summary>
/// Gets or sets the notification templates.
/// </summary>
/// <value>
/// The notification templates.
/// </value>
public List<NotificationTemplates> NotificationTemplates { get; set; }
}
}