10 lines
285 B
Go
10 lines
285 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// BrandInfo holds enriched brand data returned by /product-options.
|
||
|
|
type BrandInfo struct {
|
||
|
|
Name string `json:"name"`
|
||
|
|
LogoURL string `json:"logo_url"`
|
||
|
|
StyleCount int `json:"style_count"`
|
||
|
|
CollectionCount int `json:"collection_count"`
|
||
|
|
}
|