XbmcProvider uses Json.net for reading/writing JSON.

Updated for v3 of XBMC JSON API.
This commit is contained in:
Mark McDowall 2012-01-04 16:41:42 -08:00
commit 3dce784672
7 changed files with 61 additions and 68 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class TvShowResponse
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public TvShowResult Result { get; set; }
}
}