source:
branches/OKB/HeuristicLab.OKB.ParameterTable/IParameter.cs
@
4710
Last change on this file since 4710 was 4311, checked in by swagner, 14 years ago | |
---|---|
File size: 305 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace 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.