2003-03-27 Ville Palo <vi64pa@kolumbus.fi>
[mono.git] / mcs / class / System.Data / System.Data / SchemaType.cs
1 //
2 // System.Data.SchemaType.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies how to handle existing schema mappings when performing a FillSchema operation.
16         /// </summary>
17         [Serializable]
18         public enum SchemaType
19         {
20                 Source = 1,
21                 Mapped = 2
22         }
23 }