1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 01:11:43 +02:00
Radarr/NzbDrone.Core/Model/Xbmc/TvShowResponse.cs
Mark McDowall 3dce784672 XbmcProvider uses Json.net for reading/writing JSON.
Updated for v3 of XBMC JSON API.
2012-01-04 16:41:42 -08:00

14 lines
286 B
C#

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