| 12345678910111213 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Payment.Toss.Confirm.Search;
- public sealed record Query(
- int Page,
- ushort PerPage,
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null,
- string? Status = null
- ) : IQuery<Response>;
|