mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
6e595bfad3
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
13 lines
353 B
C#
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; }
|
|
}
|
|
}
|