From feee4ebdfaadf15443758a09833838bfde49f609 Mon Sep 17 00:00:00 2001 From: Ignacio Gomez Date: Fri, 27 Jun 2025 20:41:09 -0600 Subject: [PATCH] Fix type --- Inventory/InventoryItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Inventory/InventoryItem.cs b/Inventory/InventoryItem.cs index b057d75..a91bd6f 100644 --- a/Inventory/InventoryItem.cs +++ b/Inventory/InventoryItem.cs @@ -30,6 +30,6 @@ namespace Core.Adapters.Lib [BsonElement("attributes")] [JsonPropertyName("attributes")] - public Dictionary Attributes { get; set; } = []; + public Dictionary Attributes { get; set; } = []; } }