using System.Collections.Generic; using Newtonsoft.Json; namespace NzbDrone.Core.Download.Clients.DownloadStation { public class DownloadStationTaskAdditional { public Dictionary Detail { get; set; } public Dictionary Transfer { get; set; } [JsonProperty("File")] public List Files { get; set; } } }