namespace PyroFetes.DTO.Product.Response { // DTO utilisé pour renvoyer les informations d’un fournisseur lié à un produit public class GetProductSupplierDto { // Identifiant du produit concerné public int ProductId { get; set; } // Identifiant du fournisseur public int SupplierId { get; set; } // Nom du fournisseur public string SupplierName { get; set; } = string.Empty; // Prix de vente du produit fourni par ce fournisseur public decimal SellingPrice { get; set; } } }