Fixed error with documentId

This commit is contained in:
2026-05-25 11:09:01 +01:00
parent 1434a5d77a
commit 1ae8072219
2 changed files with 3 additions and 0 deletions
@@ -15,5 +15,7 @@ public class GetPurchaseProductDto
public int ProductMinimalQuantity { get; set; } public int ProductMinimalQuantity { get; set; }
public decimal ProductPrice { get; set; } public decimal ProductPrice { get; set; }
public int PurchaseOrderId { get; set; }
public int Quantity { get; set; } public int Quantity { get; set; }
} }
@@ -15,4 +15,5 @@ public class GetQuotationProductDto
public string? ProductImage { get; set; } public string? ProductImage { get; set; }
public string? ProductLink { get; set; } public string? ProductLink { get; set; }
public int ProductMinimalQuantity { get; set; } public int ProductMinimalQuantity { get; set; }
public int QuotationId { get; set; }
} }