This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/internal/products/model.go
2025-01-04 14:04:53 +03:00

11 lines
267 B
Go

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"`
}