This commit is contained in:
2025-10-09 17:43:32 +02:00
parent 59ddb9f7b2
commit f0ec7cd4d4
4 changed files with 4 additions and 6 deletions

View File

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