mirror of
https://github.com/Readarr/Readarr
synced 2025-12-19 23:04:49 +01:00
10 lines
216 B
C#
10 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;
|
|
}
|
|
}
|