Response.cs 199 B

12345678910
  1. namespace Application.Features.Api.Donation.Send;
  2. public sealed record Response(
  3. int DonationID,
  4. int AlertID,
  5. Guid CorrelationID,
  6. int Amount,
  7. int FeeAmount,
  8. int NetAmount
  9. );