fix commentaire ctr
continuous-integration/drone/push Build is passing Details

master
Loris OBRY 2 years ago
parent 18f1fd95d2
commit 067a5ca9c5

@ -8,13 +8,14 @@ namespace Model
{
internal class Commentaire
{
public string texte { get; set; }
public string Texte { get; set; }
public Utilisateur Proprietaire { get; set; }
public IContenu Contenu { get; set; }
Commentaire(string contenu, Utilisateur Proprietaire)
public IContenu ContenuCommente { get; set; }
public Commentaire(string Texte, Utilisateur Proprietaire, IContenu ContenuCommente)
{
this.Contenu = Contenu;
this.Texte = Texte;
this.Proprietaire = Proprietaire;
this.ContenuCommente = ContenuCommente;
}
}
}

Loading…
Cancel
Save