api-entities/http/pricing.go
2022-12-18 21:10:32 +01:00

10 lines
153 B
Go

package http
type ProductPriceRequest struct {
ProductId int `json:"product_id"`
}
type ProductPriceResponse struct {
Price float64 `json:"price"`
}