fix: fonction RemoveReview fonctionne

Popup_qui_marche_pas
Anthony RICHARD 2 years ago
parent 03a9f4c60c
commit ed54864fa8

@ -43,7 +43,7 @@ namespace Model
public string[] Tags;
private List<Review> Reviews;
public List<Review> Reviews { get; }
public Game(string name, string description, int year, string[] tags)
{
@ -71,7 +71,7 @@ namespace Model
}
public void RemoveReview(Review review)
{
Reviews.Add(review);
Reviews.Remove(review);
}
}
}

Loading…
Cancel
Save