forked from sanchezvem/PyroFetes
18 lines
566 B
C#
18 lines
566 B
C#
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; }
|
||
}
|
||
} |