Files
api-entities/catalog/model/product.go
2025-10-23 19:13:32 +02:00

14 lines
249 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",omitempty`
}