| 1234567891011121314 |
- using Domain.Entities.Wallets.ValueObject;
- using MediatR;
- namespace Application.Features.Member.Wallet.Transactions.Search;
- public sealed record Query(
- int PageNum,
- ushort PerPage,
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null,
- WalletTransactionType? Type = null
- ) : IRequest<Response>;
|