Files
BackOffice.BFF/src/BackOffice.BFF.Application/DiscountOrderCQ/Commands/PlaceOrder/PlaceOrderCommand.cs
T
masoodafar-web ce3b5db822
Build and Deploy / build (push) Successful in 2m14s
feat: add Mapster profiles and enable DiscountOrder handlers
2025-12-08 21:10:21 +03:30

17 lines
587 B
C#

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