Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookImportPayload.cs
T
Mark McDowall e5f483eadc New: Health events for Webhooks
Signed-off-by: Robin Dadswell <robin@dadswell.email>
2021-01-19 19:06:46 -05:00

15 lines
451 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookImportPayload : WebhookPayload
{
public WebhookAuthor Author { get; set; }
public WebhookBook Book { get; set; }
public List<WebhookBookFile> BookFiles { get; set; }
public bool IsUpgrade { get; set; }
public string DownloadClient { get; set; }
public string DownloadId { get; set; }
}
}