Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.ParameterTable/IParameter.cs @ 7994

Last change on this file since 7994 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 305 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.OKB.ParameterTable {
7  public interface IParameterAccessor {
8    string Name { get; }
9    string Description { get; }
10    string TypeName { get; }
11    string Value { get; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.