| 1234567891011121314151617 |
- namespace Application.Features.Api.DonationRemote.ResendAlert;
- public sealed record Response(
- int AlertID,
- int DonationID,
- Guid CorrelationID,
- string SendName,
- int Amount,
- int NetAmount,
- string? Message,
- int ChannelID,
- string ChannelName,
- string WidgetToken,
- int? CrewMemberID,
- string? CrewMemberNickname,
- bool IsTest
- );
|