Added DTO for RemoveFromBasket action

This commit is contained in:
PB
2025-11-08 02:16:17 +01:00
parent 957e0aa13a
commit 6055673a34

View File

@@ -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"`
}