HistoryProvider will return History Items with Episode and SeriesTitle.

This commit is contained in:
Mark McDowall 2011-06-19 16:44:45 -07:00
commit 0972c956b8
3 changed files with 29 additions and 24 deletions

View file

@ -16,5 +16,11 @@ namespace NzbDrone.Core.Repository
public DateTime Date { get; set; }
public bool IsProper { get; set; }
public string Indexer { get; set; }
[ResultColumn]
public Episode Episode { get; set; }
[ResultColumn]
public string SeriesTitle { get; set; }
}
}