Rev | Line | |
---|
[4311] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 6 | using HeuristicLab.Collections;
|
---|
| 7 | using HeuristicLab.Common;
|
---|
| 8 |
|
---|
| 9 | namespace 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.