18 lines
328 B
Go
18 lines
328 B
Go
|
|
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"`
|
||
|
|
}
|