mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 16:04:08 +01:00
14 lines
295 B
C#
14 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; }
|
|
}
|
|
}
|