PagingParams
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Paging parameters.
public class PagingParams
Inheritance Object → PagingParams
Properties
Skip
Returns the amount of items skipped
public int Skip { get; set; }
Property Value
Take
Returns the amount of items taken
public int Take { get; set; }
Property Value
Filter
Returns an optional filter expression.
public string Filter { get; set; }
Property Value
Constructors
PagingParams()
Initializes a new instance of the PagingParams class.
public PagingParams()