Files
api-entities/catalog/model/product.go
2025-10-24 13:27:38 +02:00

14 lines
244 B
Go

package catalog
import (
"time"
)
type Product struct {
Name string `db:"name"`
Slug string `db:"slug"`
Price float64 `db:"price"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt *time.Time `db:"updated_at"`
}