448cf2a465
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
176 B
Go
12 lines
176 B
Go
package models
|
|
|
|
type Product struct {
|
|
ID int
|
|
Name string
|
|
Description string
|
|
Price float64
|
|
ImageURL string
|
|
Category string
|
|
Featured bool
|
|
}
|