mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
fully replaced TVDB with Trakt.tv
This commit is contained in:
parent
af3282630f
commit
a052a9389e
63 changed files with 353 additions and 2529 deletions
12
NzbDrone.Core/MetadataSource/Trakt/Season.cs
Normal file
12
NzbDrone.Core/MetadataSource/Trakt/Season.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
{
|
||||
public class Season
|
||||
{
|
||||
public int season { get; set; }
|
||||
public List<Episode> episodes { get; set; }
|
||||
public string url { get; set; }
|
||||
public string poster { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue