Query.cs 359 B

1234567891011121314
  1. using Domain.Entities.Wallets.ValueObject;
  2. using MediatR;
  3. namespace Application.Features.Member.Wallet.Transactions.Search;
  4. public sealed record Query(
  5. int PageNum,
  6. ushort PerPage,
  7. int? Search = null,
  8. string? Keyword = null,
  9. string? StartAt = null,
  10. string? EndAt = null,
  11. WalletTransactionType? Type = null
  12. ) : IRequest<Response>;