Original State

This commit is contained in:
Ignacio Gomez 2025-06-21 23:56:52 -06:00
parent 6b82c73fc3
commit 4a241e401e

View File

@ -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; }
}
}