bazaar/pkg/models/product.go

10 lines
215 B
Go
Raw Normal View History

2022-01-02 22:11:00 +00:00
package models
type Product struct {
Name string `json:"name"`
URL string `json:"url"`
InStock bool `json:"in_stock"`
PriceText string `json:"price_text"`
Price float64 `json:"price"`
}