Mercurial > pub > bltoolkit
annotate Source/Mapping/MapValue.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 namespace BLToolkit.Mapping |
2 { | |
3 public class MapValue | |
4 { | |
5 public MapValue(object origValue, params object[] mapValues) | |
6 { | |
7 _origValue = origValue; | |
8 _mapValues = mapValues; | |
9 } | |
10 | |
11 private readonly object _origValue; | |
12 public object OrigValue | |
13 { | |
14 get { return _origValue; } | |
15 } | |
16 | |
17 private readonly object[] _mapValues; | |
18 public object[] MapValues | |
19 { | |
20 get { return _mapValues; } | |
21 } | |
22 } | |
23 } |