editing dto from PurchaseProduct

This commit is contained in:
2025-10-16 17:24:36 +02:00
parent b79e07dd8b
commit 74b5fa6666
9 changed files with 86 additions and 17 deletions

View File

@@ -2,9 +2,6 @@ namespace PyroFetes.DTO.PurchaseProduct.Response;
public class GetPurchaseProductDto
{
public int Id { get; set; }
public int Quantity { get; set; }
public int ProductId { get; set; }
public int ProductReferences { get; set; }
public string? ProductName { get; set; }
@@ -18,7 +15,8 @@ public class GetPurchaseProductDto
public string? ProductLink { get; set; }
public int ProductMinimalQuantity { get; set; }
public int PurchaseOrderId { get; set; }
public string? PurchaseOrderPurchaseConditions { get; set; }
public int Quantity { get; set; }
}