1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-15 23:09:53 +02:00
Radarr/NzbDrone.Api/PagingResource.cs
2013-07-18 20:47:55 -07:00

16 lines
425 B
C#

using System.Collections.Generic;
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; }
}
}