Command.cs 203 B

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