sharedlibrarycoredtos PaginationRequest - RaidMax/IW4M-Admin GitHub Wiki
pagination information holder class
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Dtos
SharedLibraryCore.Dtos.PaginationRequest[[PaginationRequest]]
end
| Type | Name | Methods |
|---|---|---|
Nullable<DateTime> |
After |
get, set |
Nullable<DateTime> |
Before |
get, set |
int |
Counthow many items to take |
get, set |
SortDirection |
Directiondirection of ordering |
get, set |
string |
Filterfilter query |
get, set |
int |
Offsethow many items to skip |
get, set |
pagination information holder class
public PaginationRequest()public int Offset { get; set; }how many items to skip
public int Count { get; set; }how many items to take
public string Filter { get; set; }filter query
public SortDirection Direction { get; set; }direction of ordering
public Nullable<DateTime> Before { get; set; }public Nullable<DateTime> After { get; set; }Generated with ModularDoc