Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceOverhaul/HeuristicLab.Problems.Instances.Orienteering/3.3/OPDataDescriptor.cs @ 14712

Last change on this file since 14712 was 14712, checked in by gkronber, 7 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
RevLine 
[11260]1namespace 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.