Query.cs 145 B

123456
  1. using MediatR;
  2. namespace Application.Features.Popup.Search
  3. {
  4. public sealed record Query(int PageNum, ushort PerPage) : IRequest<Response>;
  5. }