mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
18 lines
648 B
C#
Executable File
18 lines
648 B
C#
Executable File
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookImportPayload : WebhookPayload
|
|
{
|
|
public WebhookMovie Movie { get; set; }
|
|
public WebhookRemoteMovie RemoteMovie { get; set; }
|
|
public WebhookMovieFile MovieFile { get; set; }
|
|
public bool IsUpgrade { get; set; }
|
|
public string DownloadClient { get; set; }
|
|
public string DownloadClientType { get; set; }
|
|
public string DownloadId { get; set; }
|
|
public List<WebhookMovieFile> DeletedFiles { get; set; }
|
|
public WebhookCustomFormatInfo CustomFormatInfo { get; set; }
|
|
}
|
|
}
|