Skip to content

sharedlibrarycoredtos PaginationRequest

RaidMax edited this page May 21, 2023 · 1 revision

PaginationRequest Public class

Description

pagination information holder class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Dtos
  SharedLibraryCore.Dtos.PaginationRequest[[PaginationRequest]]
  end
Loading

Members

Properties

Public properties

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

Details

Summary

pagination information holder class

Constructors

PaginationRequest

Source code

public PaginationRequest()

Properties

Offset

public int Offset { get; set; }
Summary

how many items to skip

Count

public int Count { get; set; }
Summary

how many items to take

Filter

public string Filter { get; set; }
Summary

filter query

Direction

public SortDirection Direction { get; set; }
Summary

direction of ordering

Before

public Nullable<DateTime> Before { get; set; }

After

public Nullable<DateTime> After { get; set; }

Generated with ModularDoc

Clone this wiki locally