1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Added ParsedEpisodeInfo to LocalEpisode

This commit is contained in:
Mark McDowall
2013-07-07 20:17:07 -07:00
parent 98e94643fb
commit 21656ecc39
3 changed files with 7 additions and 6 deletions
+4 -2
View File
@@ -6,6 +6,10 @@ namespace NzbDrone.Core.Parser.Model
{
public class LocalEpisode
{
public string Path { get; set; }
public ParsedEpisodeInfo ParsedEpisodeInfo { get; set; }
public Series Series { get; set; }
public List<Episode> Episodes { get; set; }
@@ -13,7 +17,5 @@ namespace NzbDrone.Core.Parser.Model
public QualityModel Quality { get; set; }
public int SeasonNumber { get { return Episodes.Select(c => c.SeasonNumber).Distinct().Single(); } }
public string Path { get; set; }
}
}