| 12 | } |
| 13 | |
| 14 | public 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 | |
| 22 | public static class PaginationExtensions |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…