1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 23:27:26 +00:00
Radarr/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
}
}