Files
shop10/internal/models/product.go
T

12 lines
176 B
Go

package models
type Product struct {
ID int
Name string
Description string
Price float64
ImageURL string
Category string
Featured bool
}