1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-11 14:59:46 +02:00
2013-04-07 11:13:09 -07:00

14 lines
299 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace NzbDrone.Core.Download.Clients.Sabnzbd
{
public class SabHistory
{
public bool Paused { get; set; }
[JsonProperty(PropertyName = "slots")]
public List<SabHistoryItem> Items { get; set; }
}
}