Response.cs 374 B

1234567891011121314151617
  1. namespace Application.Features.Api.DonationRemote.ResendAlert;
  2. public sealed record Response(
  3. int AlertID,
  4. int DonationID,
  5. Guid CorrelationID,
  6. string SendName,
  7. int Amount,
  8. int NetAmount,
  9. string? Message,
  10. int ChannelID,
  11. string ChannelName,
  12. string WidgetToken,
  13. int? CrewMemberID,
  14. string? CrewMemberNickname,
  15. bool IsTest
  16. );