Lidarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs

20 lines
622 B
C#
Raw Normal View History

2011-03-23 07:06:22 +00:00
using System;
using NzbDrone.Core.Model;
2011-03-23 07:06:22 +00:00
namespace NzbDrone.Web.Models
{
public class UpcomingEpisodeModel
{
public int SeriesId { get; set; }
public int EpisodeId { get; set; }
public string SeriesTitle { get; set; }
2011-03-23 07:06:22 +00:00
public int SeasonNumber { get; set; }
public int EpisodeNumber { 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; }
2011-03-23 07:06:22 +00:00
}
}