Files
PyroFetes-Sujet1/PyroFetes/DTO/Product/Request/PatchProductMinimalStockDto.cs

7 lines
163 B
C#

namespace PyroFetes.DTO.Product.Request;
public class PatchProductMinimalStockDto
{
public int Id { get; set; }
public int MinimalQuantity { get; set; }
}