using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HeuristicLab.OKB.ParameterTable { public interface IParameterAccessor { string Name { get; } string Description { get; } string TypeName { get; } string Value { get; } } }