mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
f4dd6adc6a
Allow specials in missing Dropped ListSortDirection
24 lines
534 B
C#
24 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class PagingSpec<TModel>
|
|
{
|
|
public int Page { get; set; }
|
|
public int PageSize { get; set; }
|
|
public int TotalRecords { get; set; }
|
|
public string SortKey { get; set; }
|
|
public SortDirection SortDirection { get; set; }
|
|
public List<TModel> Records { get; set; }
|
|
}
|
|
|
|
public enum SortDirection
|
|
{
|
|
Ascending,
|
|
Descending
|
|
}
|
|
}
|