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