10 lines
153 B
Go
10 lines
153 B
Go
package http
|
|
|
|
type ProductPriceRequest struct {
|
|
ProductId int `json:"product_id"`
|
|
}
|
|
|
|
type ProductPriceResponse struct {
|
|
Price float64 `json:"price"`
|
|
}
|