From 84b822d9d46b46b7dd03d01ecc15c384b30cad0a Mon Sep 17 00:00:00 2001 From: Jericho Date: Mon, 18 Jan 2021 16:28:11 -0500 Subject: [PATCH] (GH-361) Add xml comments --- Source/StrongGrid/Models/PaginationLink.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; } } }