Command.cs 405 B

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