forked from sanchezvem/PyroFetes
11 lines
400 B
C#
11 lines
400 B
C#
namespace PyroFetes.DTO.Product.Request
|
|
{
|
|
// DTO utilisé pour créer ou mettre à jour la relation Product <-> Supplier
|
|
public class ProductSupplierPriceDto
|
|
{
|
|
public int ProductId { get; set; } // Id du produit (pour update)
|
|
public int SupplierId { get; set; } // Id du fournisseur
|
|
public decimal SellingPrice { get; set; } // Prix de vente
|
|
}
|
|
}
|