mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
e5f483eadc
Signed-off-by: Robin Dadswell <robin@dadswell.email>
15 lines
451 B
C#
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; }
|
|
}
|
|
}
|