mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
SeriesGrid now has sorting.
This commit is contained in:
parent
89dba91f3a
commit
d68ae8f3f3
4 changed files with 125 additions and 61 deletions
|
@ -7,12 +7,13 @@ using NzbDrone.Core.Repository;
|
|||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class SeriesModel
|
||||
public class SeriesModel
|
||||
{
|
||||
public int SeriesId { get; set; }
|
||||
|
||||
//View Only
|
||||
public string Title { get; set; }
|
||||
public string TitleSorter { get; set; }
|
||||
public int SeasonsCount { get; set; }
|
||||
public int EpisodeCount { get; set; }
|
||||
public int EpisodeFileCount { get; set; }
|
||||
|
@ -23,6 +24,8 @@ namespace NzbDrone.Web.Models
|
|||
public int Episodes { get; set; }
|
||||
public bool HasBanner { get; set; }
|
||||
public string NextAiring { get; set; }
|
||||
public string NextAiringSorter { get; set; }
|
||||
public string Details { get; set; }
|
||||
|
||||
public IList<int> Seasons { get; set; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue