mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 17:17:02 +00:00
Fixed: Updating empty Kodi library
This commit is contained in:
parent
c9ef0951bc
commit
bd222dbd95
1 changed files with 5 additions and 0 deletions
|
@ -6,5 +6,10 @@ public class TvShowResult
|
||||||
{
|
{
|
||||||
public Dictionary<string, int> Limits { get; set; }
|
public Dictionary<string, int> Limits { get; set; }
|
||||||
public List<TvShow> TvShows;
|
public List<TvShow> TvShows;
|
||||||
|
|
||||||
|
public TvShowResult()
|
||||||
|
{
|
||||||
|
TvShows = new List<TvShow>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue