diff --git a/Source/StrongGrid/Models/PaginationLink.cs b/Source/StrongGrid/Models/PaginationLink.cs
index 1efa5259..d7bb7cc3 100644
--- a/Source/StrongGrid/Models/PaginationLink.cs
+++ b/Source/StrongGrid/Models/PaginationLink.cs
@@ -1,11 +1,26 @@
namespace StrongGrid.Models
{
+ ///
+ /// Pagination information.
+ ///
public class PaginationLink
{
+ ///
+ /// Gets or sets the uri to the page.
+ ///
public string Link { get; set; }
+ ///
+ /// Gets or sets the value describing the pagination link.
+ ///
+ ///
+ /// There are 4 possible values: first, prev, next and last.
+ ///
public string Rel { get; set; }
+ ///
+ /// Gets or sets the page number.
+ ///
public int PageNumber { get; set; }
}
}