Lidarr/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdHistory.cs

14 lines
307 B
C#

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