|
package models
|
|
|
|
|
|
type LCWScrapDataModel struct {
|
|
Id string
|
|
Code string
|
|
Name string
|
|
OldPrice string
|
|
Price string
|
|
SizeVariants []SizeVariants
|
|
ColorOptions []LCWScrapDataModel
|
|
}
|
|
|
|
type DescriptionModel struct {
|
|
Description string `json:"description"`
|
|
Bold bool `json:"bold"`
|
|
}
|