Creating all WareHouseProduct DTO

This commit is contained in:
2025-10-09 17:08:01 +02:00
parent 04cb47802b
commit 59ddb9f7b2
4 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.PurchaseProduct.Request;
public class PatchWareHouseProductQuantityDto
{
public int Id { get; set; }
public int Quantity { get; set; }
}