Last change
on this file since 17877 was
14712,
checked in by gkronber, 8 years ago
|
#2520 added GUIDs for (almost) all interface types (probably still too many) also added newlines at end of all files
|
File size:
485 bytes
|
Rev | Line | |
---|
[11260] | 1 | namespace HeuristicLab.Problems.Instances.Orienteering {
|
---|
| 2 | internal class OPDataDescriptor : IDataDescriptor {
|
---|
| 3 | public string Name { get; internal set; }
|
---|
| 4 | public string Description { get; internal set; }
|
---|
| 5 |
|
---|
| 6 | internal string InstanceIdentifier { get; set; }
|
---|
| 7 |
|
---|
| 8 | internal OPDataDescriptor(string name, string description, string instanceIdentifier) {
|
---|
| 9 | Name = name;
|
---|
| 10 | Description = description;
|
---|
| 11 | InstanceIdentifier = instanceIdentifier;
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
[14712] | 14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.