Lidarr/NzbDrone.Core/Download/Clients/Sabnzbd/SabHistory.cs

14 lines
299 B
C#
Raw Normal View History

2013-04-07 18:13:09 +00:00
using System.Collections.Generic;
using Newtonsoft.Json;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients.Sabnzbd
{
public class SabHistory
{
public bool Paused { get; set; }
[JsonProperty(PropertyName = "slots")]
public List<SabHistoryItem> Items { get; set; }
}
}