Response.cs 238 B

1234567891011
  1. namespace Application.Features.Api.Payment.Toss.CreateOrder;
  2. public sealed record Response(
  3. string OrderID,
  4. string OrderName,
  5. int Amount,
  6. int PointAmount,
  7. int VatAmount,
  8. string ClientKey,
  9. string CustomerKey
  10. );