Table of Contents

Class QueryParameters

Namespace
JJConsulting.Infinity.Domain
Assembly
JJConsulting.Infinity.Domain.dll

Represents common query parameters used for filtering, pagination, and sorting in API requests.

public class QueryParameters

Inheritance

Derived

Inherited Members

Properties

CurrentOrdering

The ordering criteria for sorting query results.

public string? CurrentOrdering { get; set; }

Property Value

string?

Page

The current page number for pagination. Defaults to 1 if not specified.

public int Page { get; set; }

Property Value

int

RecordsPerPage

The number of records to be displayed per page. Defaults to 15.

public int RecordsPerPage { get; set; }

Property Value

int

SearchText

The search text used for filtering results.

public string? SearchText { get; set; }

Property Value

string?