| 123456789101112131415 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Donation.Send;
- public sealed record Command(
- int ChannelID,
- int Amount,
- string? Message,
- string SendName,
- int? CrewSessionID = null,
- int? CrewMemberID = null,
- bool IsTest = false,
- int SponsorMemberID = 0,
- string? ChannelSID = null
- ) : ICommand<Response>;
|