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