1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs
2011-06-03 21:47:04 -07:00

16 lines
459 B
C#

using System;
namespace NzbDrone.Web.Models
{
public class UpcomingEpisodeModel
{
public int SeriesId { get; set; }
public int EpisodeId { get; set; }
public string SeriesName { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string Title { get; set; }
public string Overview { get; set; }
public DateTime AirDate { get; set; }
}
}