Lidarr/src/NzbDrone.Core/Notifications/Webhook/WebhookManualInteractionPay...

18 lines
625 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookManualInteractionPayload : WebhookPayload
{
public WebhookArtist Artist { get; set; }
public List<WebhookAlbum> Albums { get; set; }
public WebhookDownloadClientItem DownloadInfo { get; set; }
public string DownloadClient { get; set; }
public string DownloadClientType { get; set; }
public string DownloadId { get; set; }
// public WebhookCustomFormatInfo CustomFormatInfo { get; set; }
// public WebhookGrabbedRelease Release { get; set; }
}
}