mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
a66b2cf416
Fixes #5104 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
15 lines
475 B
C#
Executable File
15 lines
475 B
C#
Executable File
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookImportPayload : WebhookPayload
|
|
{
|
|
public WebhookRemoteMovie RemoteMovie { get; set; }
|
|
public WebhookMovieFile MovieFile { get; set; }
|
|
public bool IsUpgrade { get; set; }
|
|
public string DownloadClient { get; set; }
|
|
public string DownloadId { get; set; }
|
|
public List<WebhookMovieFile> DeletedFiles { get; set; }
|
|
}
|
|
}
|