package model import "time" type Favorite struct { ID int `json:"id"` UserID string `json:"user_id"` SKU string `json:"sku"` Brand string `json:"brand"` SeriesName string `json:"series_name"` StyleName string `json:"style_name"` MainImageURL string `json:"main_image_url"` Category string `json:"category"` Material string `json:"material"` ColorTone string `json:"color_tone"` PricePerSqft float64 `json:"price_per_sqft"` CreatedAt time.Time `json:"created_at"` }