product.go 235 B

12345678910
  1. package basket
  2. type product struct {
  3. Id int `json:"id"`
  4. Name string `json:"name"`
  5. Image string `json:"image"`
  6. Price float64 `json:"price"`
  7. Quantity int `json:"quantity"`
  8. Sum float64 `json:"sum"`
  9. }