History grid will now be built from a json array sent to the view.

This commit is contained in:
Mark McDowall 2012-02-08 16:26:34 -08:00
parent 6ffc429ae0
commit 4af27cc4b5
8 changed files with 115 additions and 77 deletions

View file

@ -8,15 +8,15 @@ namespace NzbDrone.Web.Models
public int HistoryId { get; set; }
public int SeriesId { get; set; }
public string SeriesTitle { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string EpisodeNumbering { get; set; }
public string EpisodeTitle { get; set; }
public string EpisodeOverview { get; set; }
public string NzbTitle { get; set; }
public string Quality { get; set; }
public DateTime Date { get; set; }
public string Date { get; set; }
public bool IsProper { get; set; }
public string Indexer { get; set; }
public int EpisodeId { get; set; }
public string Details { get; set; }
}
}