Class UserPageDetails
The page details properties include page size, total number pages, and so on.
[DataContract]
public class UserPageDetails
- Inheritance
-
UserPageDetails
- Inherited Members
Constructors
UserPageDetails(int, int)
Initializes a new instance of the UserPageDetails class.
public UserPageDetails(int pageSize = 0, int page = 0)
Parameters
Properties
Page
Gets or sets the page.
[DataMember(Name = "page", EmitDefaultValue = false)]
public int Page { get; set; }
Property Value
- int
Gets the value of page.
PageSize
Gets or sets the page size.
[DataMember(Name = "pageSize", EmitDefaultValue = false)]
public int PageSize { get; set; }
Property Value
- int
Gets the value of page size.
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.