Files
PyroFetes-Sujet1/PyroFetes/DTO/PurchaseProduct/Request/PatchPurchaseProductQuantityDto.cs

7 lines
169 B
C#

namespace PyroFetes.DTO.PurchaseProduct.Request;
public class PatchPurchaseProductQuantityDto
{
public int Id { get; set; }
public int Quantity { get; set; }
}