Removed some extraneous code.

Missing grid is now a Datatable grid.
This commit is contained in:
Mark McDowall
2012-02-08 17:05:16 -08:00
parent b82c63e2ec
commit ca5888160d
7 changed files with 114 additions and 91 deletions

View File

@@ -9,11 +9,11 @@ namespace NzbDrone.Web.Models
public int SeriesId { get; set; }
public int EpisodeId { 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 DateTime AirDate { get; set; }
public string AirDate { get; set; }
public string AirDateString { get; set; }
public string Overview { get; set; }
public string Details { get; set; }
}
}