1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Api/Episodes/EpisodeResource.cs

21 lines
606 B
C#
Raw Normal View History

2013-03-02 20:13:23 +01:00
using System;
using System.Linq;
2013-03-02 21:14:18 +01:00
using NzbDrone.Core.MediaFiles;
2013-03-02 20:13:23 +01:00
namespace NzbDrone.Api.Episodes
{
public class EpisodeResource
{
public Int32 Id { get; set; }
2013-03-02 20:13:23 +01:00
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; }
}
}