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

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