-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtos PaginationRequest
RaidMax edited this page May 21, 2023
·
1 revision
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 |
Count how many items to take |
get, set |
SortDirection |
Direction direction of ordering |
get, set |
string |
Filter filter query |
get, set |
int |
Offset how 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