Response.cs 277 B

123456789101112
  1. namespace Application.Features.Api.Store.Orders.Place;
  2. public sealed record Response(
  3. int OrderID,
  4. string OrderNumber,
  5. int TotalAmount,
  6. int PlatformFeeAmount,
  7. int GameRevenueAmount,
  8. int ChannelRewardAmount,
  9. bool HasPhysical,
  10. bool HasDigital
  11. );