added CreateQuotationEndpoint.cs

This commit is contained in:
2025-12-13 15:08:18 +01:00
parent 0802ec9e33
commit be7a3193ab
7 changed files with 83 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
namespace PyroFetes.DTO.QuotationProduct.Request;
// Pour création global
public class CreateProductQuotationDto
{
public int ProductId { get; set; }
public int Quantity { get; set; }
}