diff --git a/Sources/Stim.Model/Game.cs b/Sources/Stim.Model/Game.cs index 9f5bcf1..f61b905 100644 --- a/Sources/Stim.Model/Game.cs +++ b/Sources/Stim.Model/Game.cs @@ -41,7 +41,16 @@ namespace Model } private int year; - public string[] Tags; + public string[] Tags + { + get { return tags; } + set + { + if (tags.Length != 3) return; + tags = value; + } + } + private string[] tags; public List Reviews { get; }