creating endpoint WareHouseProduct

This commit is contained in:
2025-10-17 16:23:39 +01:00
parent 59628717d4
commit fa72c6d777
10 changed files with 92 additions and 81 deletions

View File

@@ -2,6 +2,7 @@ namespace PyroFetes.DTO.WareHouseProduct.Request;
public class PatchWareHouseProductQuantityDto
{
public int Id { get; set; }
public int WareHouseId { get; set; }
public int ProductId { get; set; }
public int Quantity { get; set; }
}