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

8 lines
218 B
C#

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