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

8 lines
218 B
C#

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