From d4170f326a7f4da76fcd9c1895b26b65eafcd3be Mon Sep 17 00:00:00 2001 From: larsec Date: Sun, 13 Apr 2025 22:12:42 +0000 Subject: [PATCH] Set dimensions to string --- entity/product.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entity/product.go b/entity/product.go index 3ce6882..dd4008a 100644 --- a/entity/product.go +++ b/entity/product.go @@ -1,9 +1,9 @@ package entity type ProductDimension struct { - Length float64 `json:"length"` - Width float64 `json:"width"` - Height float64 `json:"height"` + Length string `json:"length"` + Width string `json:"width"` + Height string `json:"height"` } // Product product properties