mirror of https://github.com/Sonarr/Sonarr
17 lines
445 B
C#
17 lines
445 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace NzbDrone.Web.Models
|
|||
|
{
|
|||
|
public class UpcomingEpisodeModel
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|