Added Telegram Notification support, Not tested.

This commit is contained in:
Jamie 2017-11-02 13:19:24 +00:00
parent 5e48c66325
commit e526c1071a
25 changed files with 494 additions and 25 deletions

View file

@ -0,0 +1,21 @@
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="TelegramNotificationsViewModel" />
public class TelegramNotificationsViewModel : TelegramSettings
{
/// <summary>
/// Gets or sets the notification templates.
/// </summary>
/// <value>
/// The notification templates.
/// </value>
public List<NotificationTemplates> NotificationTemplates { get; set; }
}
}