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

7 lines
173 B
C#

namespace PyroFetes.DTO.WareHouseProduct.Response;
public class GetTotalQuantityDto
{
public int ProductId { get; set; }
public int TotalQuantity { get; set; }
}