mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 04:06:07 +08:00
8 lines
170 B
C#
8 lines
170 B
C#
namespace BuildingBlocks.Core.Pagination;
|
|
|
|
using MediatR;
|
|
|
|
public interface IPageQuery<out TResponse> : IPageRequest, IRequest<TResponse>
|
|
where TResponse : class
|
|
{ }
|