From f6a80ba2ec469a79bdbc196a9107cccbb6460771 Mon Sep 17 00:00:00 2001 From: Ignacio Gomez Date: Sun, 22 Jun 2025 01:03:23 -0600 Subject: [PATCH] Fix in namespace --- Inventory/FurnitureModel.cs | 2 +- Inventory/InventoryItem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Inventory/FurnitureModel.cs b/Inventory/FurnitureModel.cs index 30fdb6e..8da7253 100644 --- a/Inventory/FurnitureModel.cs +++ b/Inventory/FurnitureModel.cs @@ -2,7 +2,7 @@ using MongoDB.Bson.Serialization.Attributes; using System.Text.Json.Serialization; -namespace Core.Adapters.Lib.Inventory +namespace Core.Adapters.Lib { [CollectionAttributeName("Furniture")] public class FurnitureModel : Document diff --git a/Inventory/InventoryItem.cs b/Inventory/InventoryItem.cs index 8f63690..20b5968 100644 --- a/Inventory/InventoryItem.cs +++ b/Inventory/InventoryItem.cs @@ -2,7 +2,7 @@ using MongoDB.Bson.Serialization.Attributes; using System.Text.Json.Serialization; -namespace Core.Adapters.Lib.Inventory +namespace Core.Adapters.Lib { [CollectionAttributeName("Inventory")] public class InventoryItem : FurnitureModel