19 lines
520 B
C#
19 lines
520 B
C#
|
|
namespace FrontOffice.BFF.Application.DiscountShopCQ.Commands.RemoveFromDiscountCart;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// حذف محصول از سبد خرید تخفیفی
|
||
|
|
/// </summary>
|
||
|
|
public record RemoveFromDiscountCartCommand : IRequest<RemoveFromDiscountCartResponseDto>
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// شناسه محصول
|
||
|
|
/// </summary>
|
||
|
|
public long ProductId { get; init; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public class RemoveFromDiscountCartResponseDto
|
||
|
|
{
|
||
|
|
public bool Success { get; set; }
|
||
|
|
public string Message { get; set; } = string.Empty;
|
||
|
|
}
|