mirror of https://github.com/Radarr/Radarr
15 lines
416 B
C#
15 lines
416 B
C#
using System;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class UpcomingEpisodeModel
|
|
{
|
|
public int SeriesId { get; set; }
|
|
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; }
|
|
}
|
|
} |