source:
branches/OKB/HeuristicLab.OKB.ParameterTable/IParameter.cs
@
6479
Last change on this file since 6479 was 4311, checked in by swagner, 14 years ago | |
---|---|
File size: 305 bytes |
Rev | Line | |
---|---|---|
[4311] | 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.