editing dto from purchaseproduct

This commit is contained in:
2025-10-16 18:48:55 +01:00
parent 347003c24a
commit b4502ae562
2 changed files with 5 additions and 5 deletions

View File

@@ -2,6 +2,7 @@ namespace PyroFetes.DTO.PurchaseProduct.Request;
public class PatchPurchaseProductQuantityDto
{
public int Id { get; set; }
public int ProductId { get; set; }
public int PurchaseOrderId { get; set; }
public int Quantity { get; set; }
}