Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IJsonItemValidator.cs @ 17451

Last change on this file since 17451 was 17406, checked in by dpiringe, 5 years ago

#3026

  • added interfaces IJsonItem and IJsonItemValidator
  • replaced every reference JsonItem with IJsonItem
File size: 269 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.JsonInterface {
8  public interface IJsonItemValidator {
9    bool Validate(ref IList<IJsonItem> faultyItems);
10  }
11}
Note: See TracBrowser for help on using the repository browser.