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 }