1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs

19 lines
582 B
C#
Raw Normal View History

2011-03-23 09:06:22 +02:00
using System;
using NzbDrone.Core.Model;
2011-03-23 09:06:22 +02:00
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; }
2011-03-23 09:06:22 +02:00
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 09:06:22 +02:00
}
}