Files
PyroFetes-Sujet1/PyroFetes/DTO/WareHouseProduct/Request/PatchWareHouseProductQuantityDto.cs
2025-10-09 17:43:32 +02:00

7 lines
170 B
C#

namespace PyroFetes.DTO.WareHouseProduct.Request;
public class PatchWareHouseProductQuantityDto
{
public int Id { get; set; }
public int Quantity { get; set; }
}