9 lines
207 B
Go
9 lines
207 B
Go
package entity
|
|
|
|
// ProductDefaultAttribute product default attribute properties
|
|
type ProductDefaultAttribute struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
Option string `json:"option"`
|
|
}
|