mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 07:45:52 +01:00
12 lines
249 B
C#
12 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;
|
|
}
|
|
}
|