mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-08-06 22:33:37 +08:00
8 lines
209 B
C#
8 lines
209 B
C#
namespace Foxel.Models;
|
|
|
|
public record PaginatedResult<T> : BaseResult<List<T>>
|
|
{
|
|
public int Page { get; init; } = 1;
|
|
public int PageSize { get; init; } = 10;
|
|
public int TotalCount { get; init; }
|
|
} |