Skip to content

Commit

Permalink
(GH-361) Add xml comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Jan 19, 2021
1 parent 351da95 commit 84b822d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Source/StrongGrid/Models/PaginationLink.cs
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; }
}
}

0 comments on commit 84b822d

Please sign in to comment.