1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-13 22:43:35 +01:00
Radarr/NzbDrone.Api/Missing/MissingResource.cs
2013-03-21 15:21:56 -07:00

17 lines
491 B
C#

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; }
}
}