using System; using System.Collections.Generic; namespace Backend.Domain.Entities { public class Produit { public Guid Id { get; set; } public string Libelle { get; set; } public string Reference { get; set; } public DateTime DateEnregistrement { get; set; } public ICollection Proprietes { get; set; } public ICollection LigneCommandes { get; set; } } }