From 4bdcd5dd3e523d70979d7b0af11509bf513b35e3 Mon Sep 17 00:00:00 2001 From: V J Date: Tue, 23 May 2023 11:54:19 +0200 Subject: [PATCH] =?UTF-8?q?correction=20d'un=20probl=C3=A8me=20sur=20Utili?= =?UTF-8?q?sateur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MangaMap/Model/Utilisateur.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MangaMap/Model/Utilisateur.cs b/MangaMap/Model/Utilisateur.cs index b3d6a42..c0b79c1 100644 --- a/MangaMap/Model/Utilisateur.cs +++ b/MangaMap/Model/Utilisateur.cs @@ -33,6 +33,11 @@ namespace MangaMap.Model this.nom = nom; this.prenom = prenom; this.age = age; + + ListeOeuvreEnVisionnage = new List(); + ListeOeuvreDejaVu = new List(); + ListeOeuvrePourPlusTard = new List(); + ListeOeuvreFavorites = new List(); } public void SupprimerUtilisateur()