From 163eb0e5aa17057f93e338384bd05d7d79c9c829 Mon Sep 17 00:00:00 2001 From: Oscar Morales Date: Fri, 1 Aug 2025 09:07:58 -0600 Subject: [PATCH] Change ParentTagId type from string to string[] in TagAdapter --- Inventory/TagAdapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Inventory/TagAdapter.cs b/Inventory/TagAdapter.cs index b45d48b..1f69734 100644 --- a/Inventory/TagAdapter.cs +++ b/Inventory/TagAdapter.cs @@ -21,7 +21,7 @@ namespace Core.Adapters.Lib [BsonElement("parentTagId")] [JsonPropertyName("parentTagId")] - public string ParentTagId { get; set; } = null!; + public string[] ParentTagId { get; set; } = null!; [BsonElement("slug")] [JsonPropertyName("slug")]