Files
pyrofetes-backend/PyroFetes/DTO/QuotationProduct/Request/CreateQuotationProductDto.cs
T
2026-05-24 17:22:03 +01:00

8 lines
208 B
C#

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