17 lines
215 B
Go
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
|
|
}
|