From 923a7de1ff9fd3107a3407a3e784a98d9518cff1 Mon Sep 17 00:00:00 2001 From: Lars Date: Mon, 15 Sep 2025 22:15:22 +0200 Subject: [PATCH] Added exclude field --- entity/product_category.go | 1 + 1 file changed, 1 insertion(+) diff --git a/entity/product_category.go b/entity/product_category.go index 811009b..247c7ff 100644 --- a/entity/product_category.go +++ b/entity/product_category.go @@ -11,4 +11,5 @@ type ProductCategory struct { Image *ProductImage `json:"image,omitempty"` MenuOrder int `json:"menu_order"` Count int `json:"count"` + Exclude *bool `json:"exclude,omitempty"` }