Fixed error with creation of document

This commit is contained in:
2026-05-25 12:19:05 +01:00
parent b59a8b6c3d
commit d46fa606b7
5 changed files with 9 additions and 7 deletions
@@ -0,0 +1,8 @@
namespace PyroFetes.DTO.QuotationProduct.Request;
public class AddQuotationProductDto
{
public int Quantity { get; set; }
public int QuotationId { get; set; }
public int ProductId { get; set; }
}