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.
21 lines
606 B
21 lines
606 B
using System;
|
|
using System.Linq;
|
|
using NzbDrone.Core.MediaFiles;
|
|
|
|
namespace NzbDrone.Api.Episodes
|
|
{
|
|
public class EpisodeResource
|
|
{
|
|
public Int32 Id { get; set; }
|
|
public Int32 SeriesId { get; set; }
|
|
public Int32 EpisodeFileId { get; set; }
|
|
public Int32 SeasonNumber { get; set; }
|
|
public Int32 EpisodeNumber { get; set; }
|
|
public String Title { get; set; }
|
|
public DateTime AirDate { get; set; }
|
|
public Int32 Status { get; set; }
|
|
public String Overview { get; set; }
|
|
public EpisodeFile EpisodeFile { get; set; }
|
|
}
|
|
}
|