forked from ddrilling/AsbCloudServer
28 lines
830 B
C#
28 lines
830 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Requests
|
|
{
|
|
/// <summary>
|
|
/// Базовые параметры запроса
|
|
/// </summary>
|
|
public class RequestBase
|
|
{
|
|
/// <summary>
|
|
/// Параметр пагинации
|
|
/// </summary>
|
|
public int? Skip { get; set; }
|
|
|
|
/// <summary>
|
|
/// Параметр пагинации
|
|
/// </summary>
|
|
public int? Take { get; set; }
|
|
|
|
/// <summary>
|
|
/// Сортировки:
|
|
/// Содержат список названий полей сортировки
|
|
/// Указать направление сортировки можно через пробел "asc" или "desc"
|
|
/// </summary>
|
|
public IEnumerable<string> SortFields { get; set; }
|
|
}
|
|
}
|