1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 17:01:42 +02:00
Radarr/NzbDrone.Core/Model/Xbmc/TvShowResult.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

13 lines
249 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class TvShowResult
{
public Dictionary<string, int> Limits { get; set; }
public List<TvShow> TvShows;
}
}