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 DeletedFiles { get; set; } } }