mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Upcoming shows view added.
This commit is contained in:
parent
33b09567ce
commit
6c818bd8d8
9 changed files with 282 additions and 0 deletions
17
NzbDrone.Web/Models/UpcomingEpisodeModel.cs
Normal file
17
NzbDrone.Web/Models/UpcomingEpisodeModel.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue