api-entities/http/pricing.go

10 lines
149 B
Go
Raw Permalink Normal View History

2022-12-18 20:51:26 +01:00
package http
type ProductPriceRequest struct {
ProductId int `json:"product_id"`
}
type ProductPriceResponse struct {
2024-07-15 20:24:01 +02:00
Price int `json:"price"`
2022-12-18 20:51:26 +01:00
}