forked from sanchezvem/PyroFetes
7 lines
170 B
C#
7 lines
170 B
C#
namespace PyroFetes.DTO.QuotationProduct.Request;
|
|
|
|
public class PatchQuotationProductQuantityDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int Quantity { get; set; }
|
|
} |