feat: added endpoint DeleteProduct

- fix: adapters package updated
- fix: status property renamed
This commit is contained in:
2025-08-05 20:54:55 -06:00
parent a706f96bd8
commit 17c94d1095
5 changed files with 60 additions and 8 deletions

View File

@@ -34,12 +34,12 @@ namespace Core.Inventory.Domain.Contexts.Inventory.Request
public string Description { get; set; } = null!;
/// <summary>
/// Gets or sets the status of the product.
/// Gets or sets the productStatus of the product.
/// </summary>
[BsonElement("status")]
[BsonElement("productStatus")]
[BsonRepresentation(BsonType.String)]
[JsonPropertyName("status")]
public string Status { get; set; } = null!;
[JsonPropertyName("productStatus")]
public string ProductStatus { get; set; } = null!;
/// <summary>
/// Gets or sets the list of Tag Ids associated with this product.