This commit is contained in:
User
2025-01-04 14:04:53 +03:00
parent cdca2437b9
commit 4393a97a95
41 changed files with 23557 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
package products
type Product struct {
ID int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Price float64 `json:"price"`
Stock int `json:"stock"`
Images []string `json:"images"`
}