mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
3dce784672
Updated for v3 of XBMC JSON API.
13 lines
249 B
C#
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;
|
|
}
|
|
}
|