Added missing view

This commit is contained in:
Mark McDowall 2013-03-20 20:02:57 -07:00
commit 05c7b4f4ef
17 changed files with 205 additions and 6 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Linq;
namespace NzbDrone.Api.Missing
{
public class MissingResource
{
public Int32 SeriesId { get; set; }
public String SeriesTitle { get; set; }
public Int32 EpisodeId { get; set; }
public String EpisodeTitle { get; set; }
public Int32 SeasonNumber { get; set; }
public Int32 EpisodeNumber { get; set; }
public DateTime? AirDate { get; set; }
public String Overview { get; set; }
}
}