Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -6,6 +6,14 @@
/// <typeparam name="T">The type of the items contained in the paginated response.</typeparam>
public class PaginationResponse<T>
{
/// <summary>
/// Initializes a new instance of <see cref="PaginationResponse{T}"/> with the supplied page items and pagination metadata, deriving the total page count from <paramref name="totalRecords"/> and <paramref name="pageSize"/>.
/// </summary>
/// <param name="data">The <see cref="List{T}"/> of items included in the current page.</param>
/// <param name="pageNumber">The number of the current page.</param>
/// <param name="pageSize">The maximum number of items per page.</param>
/// <param name="totalRecords">The total number of records available across all pages.</param>
/// <!-- aidoc:v1 sig=bbc53e5 body=c9e44a7 -->
public PaginationResponse(List<T> data, int pageNumber, int pageSize, long totalRecords)
{
PageNumber = pageNumber;