1 Commits

Author SHA1 Message Date
d4170f326a Set dimensions to string 2025-04-13 22:12:42 +00:00

View File

@@ -1,9 +1,9 @@
package entity package entity
type ProductDimension struct { type ProductDimension struct {
Length float64 `json:"length"` Length string `json:"length"`
Width float64 `json:"width"` Width string `json:"width"`
Height float64 `json:"height"` Height string `json:"height"`
} }
// Product product properties // Product product properties