Query.cs 325 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Payment.Toss.Confirm.Search;
  3. public sealed record Query(
  4. int Page,
  5. ushort PerPage,
  6. int? Search = null,
  7. string? Keyword = null,
  8. string? StartAt = null,
  9. string? EndAt = null,
  10. string? Status = null
  11. ) : IQuery<Response>;