Set dimensions to string

This commit is contained in:
2025-04-13 22:12:42 +00:00
parent bb357b4b57
commit d4170f326a

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