From f8fbcfe26df3e5a98777699466dc19f39b60ae6b Mon Sep 17 00:00:00 2001 From: Efrain Marin Date: Tue, 5 Aug 2025 18:06:29 -0600 Subject: [PATCH] feat: updated product status property name --- Inventory/ProductAdapter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Inventory/ProductAdapter.cs b/Inventory/ProductAdapter.cs index 3144733..3daccee 100644 --- a/Inventory/ProductAdapter.cs +++ b/Inventory/ProductAdapter.cs @@ -42,10 +42,10 @@ namespace Core.Adapters.Lib.Inventory /// /// Gets or sets the status of the product. Stored as a string in MongoDB. /// - [BsonElement("status")] - [JsonPropertyName("status")] + [BsonElement("productStatus")] + [JsonPropertyName("productStatus")] [BsonRepresentation(BsonType.String)] - public ProductStatus Status { get; set; } + public ProductStatus ProductStatus { get; set; } /// /// Gets or sets the list of Tag Ids associated with this product.