package models import "time" type Product struct { ID int Name string Description string Price float64 ImageURL string Category string CreatedAt time.Time } type Category struct { Name string Slug string Count int }