2004-06-08 Umadevi S <sumadevi@novell.com>
[mono.git] / mcs / class / System.Data / System.Data.Common / SchemaLocation.cs
1 //
2 // System.Data.Common.SchemaLocation.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_2_0
11
12 namespace System.Data.Common {
13         public enum SchemaLocation 
14         {
15                 DataTable,
16                 SelectCommand
17         }
18 }
19
20 #endif