Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/Product/Request/PatchProductMinimalStockDto.cs
T
2026-05-05 10:53:52 +02:00

7 lines
163 B
C#

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