Command.cs 344 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.DonationRemote.TestDonate;
  4. public sealed record Command(
  5. string WidgetToken,
  6. string SendName,
  7. int Amount,
  8. string? Message,
  9. int? CrewMemberID,
  10. bool IsTest,
  11. int RequesterMemberID
  12. ) : ICommand<Result<Response>>;