12 lines
327 B
Go
12 lines
327 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
// ProductAttributeTerm product attribute term properties
|
||
|
|
type ProductAttributeTerm struct {
|
||
|
|
ID int `json:"id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
Slug string `json:"slug"`
|
||
|
|
Description string `json:"description"`
|
||
|
|
MenuOrder int `json:"menu_order"`
|
||
|
|
Count int `json:"count"`
|
||
|
|
}
|