mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 11:05:44 +00:00
13 lines
295 B
C#
13 lines
295 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
|
{
|
|
public class SabQueue
|
|
{
|
|
public bool Paused { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "slots")]
|
|
public List<SabQueueItem> Items { get; set; }
|
|
}
|
|
}
|