Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookGrabPayload.cs
T
2021-01-19 19:06:43 -05:00

13 lines
353 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookGrabPayload : WebhookPayload
{
public List<WebhookBook> Books { get; set; }
public WebhookRelease Release { get; set; }
public string DownloadClient { get; set; }
public string DownloadId { get; set; }
}
}