forked from sanchezvem/PyroFetes
Creating all PurchaseProduct DTO
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace PyroFetes.DTO.PurchaseProduct.Request;
|
||||
|
||||
public class PatchPurchaseProductQuantityDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int Quantity { get; set; }
|
||||
|
||||
public int ProductId { get; set; }
|
||||
|
||||
public int PurchaseOrderId { get; set; }
|
||||
}
|
Reference in New Issue
Block a user