forked from sanchezvem/PyroFetes
20 lines
543 B
C#
20 lines
543 B
C#
namespace API.DTO.Supplier.Request;
|
|
|
|
public class CreateSupplierDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Adress { get; set; }
|
|
public int ZipCode { get; set; }
|
|
public string City { get; set; }
|
|
|
|
// Produits que ce fournisseur fournit
|
|
public List<SupplierProductPriceDto>? Products { get; set; }
|
|
}
|
|
|
|
public class SupplierProductPriceDto
|
|
{
|
|
public int ProductId { get; set; }
|
|
public decimal SellingPrice { get; set; }
|
|
} |