Files
PyroFetes-Sujet1/PyroFetes/DTO/QuotationProduct/Request/CreateProductQuotationDto.cs

8 lines
198 B
C#

namespace PyroFetes.DTO.QuotationProduct.Request;
// Pour création global
public class CreateProductQuotationDto
{
public int ProductId { get; set; }
public int Quantity { get; set; }
}