api-entities/http/catalog.go
2022-12-20 11:14:52 +01:00

18 lines
339 B
Go

package http
type AddProductToBasketRequest struct {
ProductID int `json:"product_id"`
}
type AddProductToBasketResponse struct {
BasketID string `json:"basket_id"`
}
type RemoveProductFromBasketRequest struct {
ProductID int `json:"product_id"`
}
type RemoveProductFromBasketResponse struct {
BasketID string `json:"basket_id"`
}