Files
PyroFetes-Sujet1/PyroFetes/DTO/WareHouseProduct/Response/GetWareHouseProductDto.cs

8 lines
209 B
C#

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