NAnt build files and System.Data files moved to appropriate directory.
[mono.git] / mcs / class / System.Data / System.Data / MappingType.cs
1 //
2 // System.Data.MappingType.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Specifies how a DataColumn is mapped.
14         /// </summary>
15         public enum MappingType
16         {
17                 Attribute,
18                 Element,
19                 Hidden,
20                 SimpleContent
21         }
22 }