using System.Collections.Generic; using Newtonsoft.Json; namespace NzbDrone.Core.Download.Clients.UTorrent { public class UTorrentResponse { public int Build { get; set; } public List Torrents { get; set; } public List Label { get; set; } public List RssFeeds { get; set; } public List RssFilters { get; set; } [JsonProperty(PropertyName = "torrentp")] public List TorrentsChanged { get; set; } [JsonProperty(PropertyName = "torrentm")] public List TorrentsRemoved { get; set; } [JsonProperty(PropertyName = "torrentc")] public string CacheNumber { get; set; } public List Settings { get; set; } } }