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

8 lines
218 B
C#

namespace PyroFetes.DTO.QuotationProduct.Request;
public class PatchQuotationProductQuantityDto
{
public int ProductId { get; set; }
public int QuotationId { get; set; }
public int Quantity { get; set; }
}