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

8 lines
212 B
C#

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