Query.cs 295 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using Domain.Entities.Wallets.ValueObject;
  3. namespace Application.Features.Api.Member.Wallet.GetMyTransactions;
  4. public sealed record Query(
  5. int MemberID,
  6. int Page,
  7. ushort PerPage,
  8. WalletTransactionType? Type = null
  9. ) : IQuery<Response>;