private string[] GetTags(ResponseViewModel[] responses)
 {
     var fileTags=new List<string>();
     foreach(var response in responses) if(!fileTags.Contains(response.Tag)) fileTags.Add(response.Tag);
     return fileTags.Concat(tagPresets).ToArray();
 }