forked from sanchezvem/PyroFetes
12 lines
333 B
C#
12 lines
333 B
C#
namespace PyroFetes.DTO.Product.Response
|
|
{
|
|
// DTO pour la lecture des fournisseurs liés à un produit
|
|
public class GetProductSupplierDto
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int SupplierId { get; set; }
|
|
public string SupplierName { get; set; } = string.Empty;
|
|
public decimal SellingPrice { get; set; }
|
|
}
|
|
}
|