mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
10 lines
215 B
C#
10 lines
215 B
C#
namespace BuildingBlocks.Core.Pagination;
|
|
|
|
public interface IPageRequest
|
|
{
|
|
int PageNumber { get; init; }
|
|
int PageSize { get; init; }
|
|
string? Filters { get; init; }
|
|
string? SortOrder { get; init; }
|
|
}
|