Files

17 lines
215 B
Go
Raw Permalink Normal View History

2026-07-15 18:47:19 -03:00
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
}