MCPcopy Create free account
hub / github.com/TryCatchLearn/Overflow / PaginationResult

Class PaginationResult

Common/Pagination.cs:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14public record PaginationResult<T>
15{
16 public IReadOnlyList<T> Items { get; init; } = [];
17 public int TotalCount { get; init; }
18 public int Page { get; init; }
19 public int PageSize { get; init; }
20}
21
22public static class PaginationExtensions
23{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…