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

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.WareHouseProduct.Response;
public class GetTotalQuantityDto
{
public int ProductId { get; set; }
public int TotalQuantity { get; set; }
}