Files
PyroFetes-Sujet1/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs
2025-10-09 15:50:02 +02:00

20 lines
549 B
C#

namespace PyroFetes.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; }
}