Response.cs 181 B

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