17 lines
587 B
C#
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; }
|
|
}
|