Response.cs 253 B

123456789101112
  1. namespace Application.Features.Api.Payment.CreateOrder;
  2. public sealed record Response(
  3. string OrderID,
  4. string ClientKey,
  5. string MerchantID,
  6. int Amount,
  7. int PointAmount,
  8. int VatAmount,
  9. string SuccessUrl,
  10. string FailUrl
  11. );