Command.cs 325 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using Domain.Entities.Wallets.ValueObject;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Admin.Member.Wallet.List.Charge;
  5. public sealed record Command(
  6. int WalletID,
  7. long Amount,
  8. string? Memo,
  9. WalletBalanceType? BalanceType = null
  10. ) : ICommand<Result>;