Files
pyrofetes-backend/PyroFetes/DTO/QuotationProduct/Request/AddQuotationProductDto.cs
T

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