Add webhook notification and API logic

This commit is contained in:
Namaneo 2019-11-29 16:05:14 +01:00
parent faba87cdc6
commit cdc002ecd7
8 changed files with 216 additions and 2 deletions

View file

@ -0,0 +1,15 @@

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="WebhookSettings" />
public class WebhookNotificationViewModel : WebhookSettings
{
}
}