Lidarr/src/NzbDrone.Core/Download/Clients/DownloadStation/DownloadStationTorrentAddit...

16 lines
413 B
C#
Raw Normal View History

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