Mercurial > pub > bltoolkit
annotate Source/Mapping/Fluent/MappedProperty.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 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace BLToolkit.Mapping.Fluent | |
7 { | |
8 public class MappedProperty | |
9 { | |
10 public string Name { get; internal set; } | |
11 public Type Type { get; internal set; } | |
12 public Type ParentType { get; internal set; } | |
13 } | |
14 } |