New: Webhook improvements

This commit is contained in:
Qstick
2017-10-28 17:38:57 -04:00
parent 7e863d61ff
commit 6af1ffba50
12 changed files with 241 additions and 134 deletions
@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookImportPayload : WebhookPayload
{
public List<WebhookTrack> Tracks { get; set; }
public WebhookTrackFile TrackFile { get; set; }
public bool IsUpgrade { get; set; }
}
}