mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 16:52:04 +02:00
SabProvider now gets JSON instead of XML for history and queue.
This commit is contained in:
16
NzbDrone.Core/Model/Sabnzbd/SabQueue.cs
Normal file
16
NzbDrone.Core/Model/Sabnzbd/SabQueue.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace NzbDrone.Core.Model.Sabnzbd
|
||||
{
|
||||
public class SabQueue
|
||||
{
|
||||
public bool Paused { get; set; }
|
||||
|
||||
[JsonProperty(PropertyName = "slots")]
|
||||
public List<SabQueueItem> Items { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user