cake-order-tracker/models/product.go
2025-07-07 11:30:28 +02:00

9 lines
101 B
Go

package models
import "gorm.io/gorm"
type Product struct {
gorm.Model
Name string
Price uint
}