Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/WareHouseProduct/Response/GetWareHouseProductDto.cs
T
2026-05-05 10:53:52 +02:00

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; }
}