From 4a241e401ea2d2305c3e406a8762224b1025c8d9 Mon Sep 17 00:00:00 2001 From: Ignacio Gomez Date: Sat, 21 Jun 2025 23:56:52 -0600 Subject: [PATCH] Original State --- Inventory/Base/InventoryItem.cs | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Inventory/Base/InventoryItem.cs diff --git a/Inventory/Base/InventoryItem.cs b/Inventory/Base/InventoryItem.cs deleted file mode 100644 index e45586b..0000000 --- a/Inventory/Base/InventoryItem.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Core.Blueprint.Mongo; -using MongoDB.Bson.Serialization.Attributes; -using System.Text.Json.Serialization; - -namespace Core.Adapters.Lib.Inventory.Base -{ - [CollectionAttributeName("Inventory")] - public class InventoryItem : Document - { - [BsonElement("name")] - [JsonPropertyName("name")] - public string Name { get; set; } - - [BsonElement("description")] - [JsonPropertyName("description")] - public string Description { get; set; } - - [BsonElement("stock")] - [JsonPropertyName("stock")] - public int Stock { get; set; } - - [BsonElement("representation")] - [JsonPropertyName("representation")] - public string Representation { get; set; } - - - public string Company { get; set; } - } -}