1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs
2012-02-09 14:34:59 -08:00

19 lines
582 B
C#

using System;
using NzbDrone.Core.Model;
namespace NzbDrone.Web.Models
{
public class UpcomingEpisodeModel
{
public int SeriesId { get; set; }
public int EpisodeId { get; set; }
public string SeriesTitle { get; set; }
public string EpisodeNumbering { get; set; }
public string Title { get; set; }
public string Overview { get; set; }
public DateTime AirDateTime { get; set; }
public string AirDate { get; set; }
public string AirTime { get; set; }
public string Status { get; set; }
}
}