forked from sanchezvem/PyroFetes
18 lines
600 B
C#
18 lines
600 B
C#
namespace PyroFetes.DTO.Product.Response
|
||
{
|
||
// DTO utilisé pour renvoyer les informations d’un entrepôt lié à un produit
|
||
public class GetProductWarehouseDto
|
||
{
|
||
// Identifiant de l'entrepôt
|
||
public int WarehouseId { get; set; }
|
||
|
||
// Identifiant du produit associé à cet entrepôt
|
||
public int ProductId { get; set; }
|
||
|
||
// Nom de l'entrepôt (utile pour l’affichage)
|
||
public string WarehouseName { get; set; } = string.Empty;
|
||
|
||
// Quantité du produit stockée dans cet entrepôt
|
||
public int Quantity { get; set; }
|
||
}
|
||
} |