1 //Copyright 2010 Microsoft Corporation
2 //
3 //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
4 //You may obtain a copy of the License at
5 //
6 //http://www.apache.org/licenses/LICENSE-2.0
7 //
8 //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
9 //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 //See the License for the specific language governing permissions and limitations under the License.
11 
12 
13 namespace System.Data.Services.Common
14 {
15     [System.Diagnostics.DebuggerDisplay("EntityPropertyMappingInfo {DefiningType}")]
16     internal sealed class EntityPropertyMappingInfo
17     {
18         public EntityPropertyMappingAttribute Attribute
19         {
20             get; set;
21         }
22 
23         public Delegate PropValReader
24         {
25             get;
26             set;
27         }
28 
29         public Type DefiningType
30         {
31             get;
32             set;
33         }
34     }
35 }