Response.cs 416 B

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