1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-07 07:13:46 +00:00

Episode EpisodeFile changed to ResultColumn instead of Ignore

This commit is contained in:
Mark McDowall 2011-06-19 17:23:23 -07:00
parent 63a2664d8a
commit cf324ace73

View file

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