mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
19 lines
477 B
C#
19 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public class PagingResource<TModel>
|
|
{
|
|
public int Page { get; set; }
|
|
public int PageSize { get; set; }
|
|
public string SortKey { get; set; }
|
|
public SortDirection SortDirection { get; set; }
|
|
public int TotalRecords { get; set; }
|
|
public List<TModel> Records { get; set; }
|
|
}
|
|
}
|