Files
PyroFetes-Sujet1/PyroFetes/DTO/PurchaseProduct/Request/PatchWareHouseProductQuantityDto.cs

7 lines
169 B
C#

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