Get json response when adding item to the queue

This commit is contained in:
Mark McDowall 2012-10-22 23:57:01 -07:00
commit 1b9480275f
4 changed files with 29 additions and 14 deletions

View 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; }
}
}