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

7 lines
173 B
C#

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