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

14 lines
254 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"`
}