Command.cs 369 B

123456789101112131415
  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. string? ChannelSID = null
  13. ) : ICommand<Response>;