public bool UpdateTagsStructureInternal(string tagsJson)
 {
     try
     {
         NameBuilder.Instance.Tags = _importer.ParseTagCollection(tagsJson, _tagTypes);
         this.UpdateFiles();
         return(true);
     }
     catch (Exception e)
     {
         return(false);
     }
 }