10 lines
158 B
Go
10 lines
158 B
Go
package pricing
|
|
|
|
type ProductPriceRequestDTO struct {
|
|
ProductId int `json:"product_id"`
|
|
}
|
|
|
|
type ProductPriceResponseDTO struct {
|
|
Price int `json:"price"`
|
|
}
|