diff --git a/Sources/Stim.Model/Game.cs b/Sources/Stim.Model/Game.cs index f0e3d90..9f5bcf1 100644 --- a/Sources/Stim.Model/Game.cs +++ b/Sources/Stim.Model/Game.cs @@ -43,7 +43,7 @@ namespace Model public string[] Tags; - private List Reviews; + public List 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); } } }