diff --git a/basket/dto/basket.go b/basket/dto/basket.go index 4ad12b4..3972c52 100644 --- a/basket/dto/basket.go +++ b/basket/dto/basket.go @@ -39,6 +39,7 @@ type AddProductToBasketResponseDTO struct { type RemoveFromBasketRequestDTO struct { BasketID string `json:"basket_id"` ProductID string `json:"product_id"` + Quantity int `json:"quantity"` } type RemoveFromBasketResponseDTO struct {