Added Quantity field to RemoveFromBasket DTO

This commit is contained in:
PB
2025-11-08 02:20:12 +01:00
parent 6055673a34
commit d7bcb71acf

View File

@@ -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 {