Skip to main content

PagingParams

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Paging parameters.

public class PagingParams

Inheritance ObjectPagingParams

Properties

Skip

Returns the amount of items skipped

public int Skip { get; set; }

Property Value

Int32

Take

Returns the amount of items taken

public int Take { get; set; }

Property Value

Int32

Filter

Returns an optional filter expression.

public string Filter { get; set; }

Property Value

String

Constructors

PagingParams()

Initializes a new instance of the PagingParams class.

public PagingParams()