Command.cs 170 B

123456789
  1. using MediatR;
  2. namespace Application.Features.Member.Wallet.List.Charge;
  3. public sealed record Command(
  4. int WalletID,
  5. long Amount,
  6. string? Memo
  7. ) : IRequest;