1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 16:31:43 +02:00
Radarr/NzbDrone.Web/Models/UpcomingEpisodeModel.cs

16 lines
459 B
C#
Raw Normal View History

2011-03-23 08:06:22 +01:00
using System;
namespace NzbDrone.Web.Models
{
public class UpcomingEpisodeModel
{
public int SeriesId { get; set; }
public int EpisodeId { get; set; }
2011-03-23 08:06:22 +01:00
public string SeriesName { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string Title { get; set; }
public string Overview { get; set; }
public DateTime AirDate { get; set; }
}
}