-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,26 @@ | ||
namespace StrongGrid.Models | ||
{ | ||
/// <summary> | ||
/// Pagination information. | ||
/// </summary> | ||
public class PaginationLink | ||
{ | ||
/// <summary> | ||
/// Gets or sets the uri to the page. | ||
/// </summary> | ||
public string Link { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the value describing the pagination link. | ||
/// </summary> | ||
/// <remarks> | ||
/// There are 4 possible values: first, prev, next and last. | ||
/// </remarks> | ||
public string Rel { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the page number. | ||
/// </summary> | ||
public int PageNumber { get; set; } | ||
} | ||
} |