Updated folder mapping logic. Added unmapped folder view.

This commit is contained in:
Keivan
2010-09-30 20:56:08 -07:00
parent beaf0cf939
commit 9d52229e04
20 changed files with 4033 additions and 448 deletions
+7 -1
View File
@@ -9,7 +9,9 @@ namespace NzbDrone.Core.Repository
[SubSonicPrimaryKey(false)]
public int TvdbId { get; set; }
public string SeriesName { get; set; }
public string Title { get; set; }
public string CleanTitle { get; set; }
public string Status { get; set; }
@@ -24,10 +26,14 @@ namespace NzbDrone.Core.Repository
public string Path { get; set; }
public bool Monitored { get; set; }
[SubSonicToManyRelation]
public virtual List<Season> Seasons { get; private set; }
[SubSonicToManyRelation]
public virtual List<Episode> Episodes { get; private set; }
}
}