|
|
|
@ -19,7 +19,6 @@ namespace NzbDrone.Core.Repository
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public DateTime AirDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string Overview { get; set; }
|
|
|
|
|
|
|
|
|
|
public Boolean Ignored { get; set; }
|
|
|
|
@ -33,7 +32,6 @@ namespace NzbDrone.Core.Repository
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public DateTime? GrabDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Ignore]
|
|
|
|
|
public EpisodeStatusType Status
|
|
|
|
|
{
|
|
|
|
@ -58,15 +56,12 @@ namespace NzbDrone.Core.Repository
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Ignore]
|
|
|
|
|
public Series Series { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Ignore]
|
|
|
|
|
[ResultColumn]
|
|
|
|
|
public EpisodeFile EpisodeFile { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
|
|
|
|