Command.cs 338 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Donation.Send;
  3. public sealed record Command(
  4. int ChannelID,
  5. int Amount,
  6. string? Message,
  7. string SendName,
  8. int? CrewSessionID = null,
  9. int? CrewMemberID = null,
  10. bool IsTest = false,
  11. int SponsorMemberID = 0
  12. ) : ICommand<Response>;