Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.AlgorithmHost/Mapping.cs @ 4311

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

Integrated OKB clients for HL 3.3 (#1166)

File size: 717 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
6using HeuristicLab.Collections;
7using HeuristicLab.Common;
8
9namespace HeuristicLab.OKB.AlgorithmHost {
10
11  [StorableClass]
12  public class Mapping : IContent {
13
14    public Mapping() {
15      Map = new ObservableDictionary<string, string>();
16      Values = new ObservableCollection<string>();
17    }
18
19    [StorableConstructor]
20    public Mapping(bool deserializing) { }
21
22    [Storable]
23    public ObservableDictionary<string, string> Map { get; set; }
24
25    [Storable]
26    public ObservableCollection<string> Values { get; set; }
27  }
28}
Note: See TracBrowser for help on using the repository browser.