Episode EpisodeFile changed to ResultColumn instead of Ignore
This commit is contained in:
parent
63a2664d8a
commit
cf324ace73
|
@ -19,7 +19,6 @@ namespace NzbDrone.Core.Repository
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public DateTime AirDate { get; set; }
|
public DateTime AirDate { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string Overview { get; set; }
|
public string Overview { get; set; }
|
||||||
|
|
||||||
public Boolean Ignored { get; set; }
|
public Boolean Ignored { get; set; }
|
||||||
|
@ -33,7 +32,6 @@ namespace NzbDrone.Core.Repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public DateTime? GrabDate { get; set; }
|
public DateTime? GrabDate { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[Ignore]
|
[Ignore]
|
||||||
public EpisodeStatusType Status
|
public EpisodeStatusType Status
|
||||||
{
|
{
|
||||||
|
@ -58,15 +56,12 @@ namespace NzbDrone.Core.Repository
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[Ignore]
|
[Ignore]
|
||||||
public Series Series { get; set; }
|
public Series Series { get; set; }
|
||||||
|
|
||||||
|
[ResultColumn]
|
||||||
[Ignore]
|
|
||||||
public EpisodeFile EpisodeFile { get; set; }
|
public EpisodeFile EpisodeFile { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
||||||
|
|
Loading…
Reference in New Issue