1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs

19 lines
582 B
C#
Raw Normal View History

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