mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
11 lines
216 B
C#
11 lines
216 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
{
|
|
public class TvShowResult
|
|
{
|
|
public Dictionary<string, int> Limits { get; set; }
|
|
public List<TvShow> TvShows;
|
|
}
|
|
}
|