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

11 lines
357 B
C#

namespace PyroFetes.DTO.Product.Response
{
// DTO pour la lecture des entrepôts liés à un produit
public class GetProductWarehouseDto
{
public int WarehouseId { get; set; }
public int ProductId { get; set; }
public string WarehouseName { get; set; } = string.Empty;
public int Quantity { get; set; }
}
}