Files
PyroFetes/PyroFetes/DTO/ProductDelivery/Request/UpdateProductDeliveryDto.cs
2025-10-11 01:29:02 +02:00

8 lines
212 B
C#

namespace PyroFetes.DTO.ProductDelivery.Request;
public class UpdateProductDeliveryDto
{
public int Quantity { get; set; }
public int ProductId { get; set; }
public int DeliveryNoteId { get; set; }
}