using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { internal class Commentaire { public string texte { get; set; } public Utilisateur Proprietaire { get; set; } public IContenu Contenu { get; set; } Commentaire(string contenu, Utilisateur Proprietaire) { this.Contenu = Contenu; this.Proprietaire = Proprietaire; } } }