mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
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;
|
|
}
|
|
}
|