Files
2026-07-15 18:47:19 -03:00

17 lines
215 B
Go

package model
type Product struct {
ID int
Name string
Category string
Price float64
Quantity int
}
type ProductInput struct {
Name string
Category string
Price float64
Quantity int
}