mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Replaced Telerik SeasonGrid with simple table.
This commit is contained in:
parent
02a3b38210
commit
f065d345a5
8 changed files with 310 additions and 48 deletions
15
NzbDrone.Web/Models/SeasonModel.cs
Normal file
15
NzbDrone.Web/Models/SeasonModel.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Web;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class SeasonModel
|
||||
{
|
||||
public int SeasonNumber { get; set; }
|
||||
public List<EpisodeModel> Episodes { get; set; }
|
||||
}
|
||||
}
|
22
NzbDrone.Web/Models/SeriesDetailsModel.cs
Normal file
22
NzbDrone.Web/Models/SeriesDetailsModel.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Web;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class SeriesDetailsModel
|
||||
{
|
||||
public int SeriesId { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string AirsDayOfWeek { get; set; }
|
||||
public string QualityProfileName { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public string NextAiring { get; set; }
|
||||
public string Path { get; set; }
|
||||
public bool HasBanner { get; set; }
|
||||
public List<SeasonModel> Seasons { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue