Files
pyrofetes-backend/PyroFetes/DTO/PurchaseProduct/Request/PatchPurchaseProductQuantityDto.cs
T
2026-05-24 17:24:44 +01:00

8 lines
220 B
C#

namespace PyroFetes.DTO.PurchaseProduct.Request;
public class PatchPurchaseProductQuantityDto
{
public int ProductId { get; set; }
public int PurchaseOrderId { get; set; }
public int Quantity { get; set; }
}