Files
woogo/entity/product_attribute.go
scheibling 30fb57f4f7 Created
2025-04-08 19:24:11 +02:00

12 lines
312 B
Go

package entity
// ProductAttribute product attribute properties
type ProductAttribute struct {
ID int `json:"id"`
Name string `json:"name"`
Slug string `json:"slug"`
Type string `json:"type"`
OrderBy string `json:"order_by"`
HasArchives bool `json:"has_archives"`
}