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

7 lines
170 B
C#

namespace PyroFetes.DTO.QuotationProduct.Request;
public class PatchQuotationProductQuantityDto
{
public int Id { get; set; }
public int Quantity { get; set; }
}