diff --git a/basket/dto/basket.go b/basket/dto/basket.go index 2d66931..4ad12b4 100644 --- a/basket/dto/basket.go +++ b/basket/dto/basket.go @@ -36,6 +36,15 @@ type AddProductToBasketResponseDTO struct { BasketID string `json:"basket_id"` } +type RemoveFromBasketRequestDTO struct { + BasketID string `json:"basket_id"` + ProductID string `json:"product_id"` +} + +type RemoveFromBasketResponseDTO struct { + BasketID string `json:"basket_id"` +} + type BasketCheckoutRequestDTO struct { BasketID string `json:"basket_id"` }