namespace BackOffice.BFF.Application.DiscountOrderCQ.Commands.PlaceOrder; public record PlaceOrderCommand : IRequest { /// شناسه کاربر public long UserId { get; init; } /// شناسه آدرس ارسال public long AddressId { get; init; } /// مبلغ پرداخت از موجودی تخفیف public long DiscountBalanceAmount { get; init; } /// مبلغ پرداخت از درگاه public long GatewayAmount { get; init; } }