public ChooseFuzzyMatchesResult(int updated, int alreadyUpToDate, int updateFailed, QualifiedError[] errors)
 {
     Updated = updated;
     AlreadyUpToDate = alreadyUpToDate;
     UpdateFailed = updateFailed;
     Errors = errors;
 }
 public MapResult(FuzzyMatch[] fuzzyMatches, int updated, int alreadyUpToDate, int notFound, int updateFailed, QualifiedError[] errors)
 {
     FuzzyMatches = fuzzyMatches;
     Updated = updated;
     AlreadyUpToDate = alreadyUpToDate;
     NotFound = notFound;
     UpdateFailed = updateFailed;
     Errors = errors;
 }