Files
woogo/entity/image.go

14 lines
428 B
Go
Raw Permalink Normal View History

2025-04-08 19:24:11 +02:00
package entity
// ProductImage product iamge properties
type ProductImage struct {
ID int `json:"id"`
DateCreated string `json:"date_created"`
DateCreatedGMT string `json:"date_created_gmt"`
DateModified string `json:"date_modified"`
DateModifiedGMT string `json:"date_modified_gmt"`
Src string `json:"src"`
Name string `json:"name"`
Alt string `json:"alt"`
}