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 internal class Commentaire
{ {
public string texte { get; set; } public string Texte { get; set; }
public Utilisateur Proprietaire { get; set; } public Utilisateur Proprietaire { get; set; }
public IContenu Contenu { get; set; } public IContenu ContenuCommente { get; set; }
Commentaire(string contenu, Utilisateur Proprietaire) public Commentaire(string Texte, Utilisateur Proprietaire, IContenu ContenuCommente)
{ {
this.Contenu = Contenu; this.Texte = Texte;
this.Proprietaire = Proprietaire; this.Proprietaire = Proprietaire;
this.ContenuCommente = ContenuCommente;
} }
} }
} }

Loading…
Cancel
Save