mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
moved Series,Seasons,Episodes to their own folders.
This commit is contained in:
parent
6ffa4e0568
commit
2d4998d52d
137 changed files with 181 additions and 110 deletions
17
NzbDrone.Core/Tv/Season.cs
Normal file
17
NzbDrone.Core/Tv/Season.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System.Linq;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
public class Season
|
||||
{
|
||||
public int SeasonId { get; set; }
|
||||
public int SeriesId { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public Boolean Ignored { get; set; }
|
||||
|
||||
public List<Episode> Episodes { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue