product.go 273 B

1234567891011121314
  1. package basket
  2. // import (
  3. // "encoding/json"
  4. // )
  5. type product struct {
  6. Id int `json:"id"`
  7. Name string `json:"name"`
  8. Image string `json:"image"`
  9. Price float64 `json:"price"`
  10. Quantity int `json:"quantity"`
  11. Sum float64 `json:"sum"`
  12. }