Files
PyroFetes-Sujet1/PyroFetes/DTO/ProductWarehouse/Request/ProductWarehouseDto.cs
2025-10-09 15:39:10 +02:00

17 lines
501 B
C#

namespace PyroFetes.DTO.Product.Request
{
// DTO utilisé pour créer ou mettre à jour la relation Product <-> Warehouse
public class CreateProductWarehouseDto
{
public int WarehouseId { get; set; }
public int ProductId { get; set; }
public int Quantity { get; set; }
}
public class UpdateProductWarehouseDto
{
public int WarehouseId { get; set; }
public int ProductId { get; set; }
public int Quantity { get; set; }
}
}