mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Get json response when adding item to the queue
This commit is contained in:
parent
a2e7f9ecbb
commit
1b9480275f
4 changed files with 29 additions and 14 deletions
16
NzbDrone.Core/Model/Sabnzbd/SabAddResponse.cs
Normal file
16
NzbDrone.Core/Model/Sabnzbd/SabAddResponse.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 SabAddResponse
|
||||
{
|
||||
public bool Status { get; set; }
|
||||
|
||||
[JsonProperty(PropertyName = "nzo_ids")]
|
||||
public List<String> Ids { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue