Compare commits

..

2 Commits

Author SHA1 Message Date
1e8a075d5d update 2022-12-20 11:22:24 +01:00
9fc3ec9350 fixed typo 2022-12-20 11:14:52 +01:00

View File

@@ -4,8 +4,9 @@ type AddProductToBasketRequest struct {
ProductID int `json:"product_id"` ProductID int `json:"product_id"`
} }
type ProductAddToBasketResponse struct { type AddProductToBasketResponse struct {
BasketID string `json:"basket_id"` ProductID int `json:"product_id"`
BasketID string `json:"basket_id"`
} }
type RemoveProductFromBasketRequest struct { type RemoveProductFromBasketRequest struct {