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