| 123456789101112 |
- namespace Application.Features.Api.Store.Orders.Place;
- public sealed record Response(
- int OrderID,
- string OrderNumber,
- int TotalAmount,
- int PlatformFeeAmount,
- int GameRevenueAmount,
- int ChannelRewardAmount,
- bool HasPhysical,
- bool HasDigital
- );
|