using System.Collections.Generic; namespace NzbDrone.Core.Notifications.Webhook { public class WebhookImportPayload : WebhookPayload { public WebhookAuthor Author { get; set; } public WebhookBook Book { get; set; } public List BookFiles { get; set; } public bool IsUpgrade { get; set; } public string DownloadClient { get; set; } public string DownloadId { get; set; } } }