Query.cs 390 B

1234567891011121314
  1. using Domain.Entities.Wallets.ValueObject;
  2. using Application.Abstractions.Messaging;
  3. namespace Application.Features.Admin.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. ) : IQuery<Response>;