You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
491 B
17 lines
491 B
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; }
|
|
}
|
|
} |