Creating of all product dto

This commit is contained in:
2025-10-09 17:54:28 +02:00
parent 04cb47802b
commit 25d1407bd2
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.Product.Request;
public class PatchProductMinimalStockDto
{
public int Id { get; set; }
public int MinimalQuantity { get; set; }
}