9 lines
191 B
C#
9 lines
191 B
C#
public record PagedResult<T>(
|
|
IReadOnlyList<T> Items,
|
|
int Page,
|
|
int PageSize,
|
|
int TotalCount
|
|
)
|
|
{
|
|
public int TotalPages => (int)Math.Ceiling((double)TotalCount/PageSize);
|
|
} |