Upcoming shows view added.

This commit is contained in:
Mark McDowall 2011-03-23 00:06:22 -07:00
commit 6c818bd8d8
9 changed files with 282 additions and 0 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class UpcomingEpisodeModel
{
public string SeriesName { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string Title { get; set; }
public string Overview { get; set; }
public DateTime AirDate { get; set; }
}
}