e9b77f2dab2c8c59f7805a1cf633ce4329baeca7
[mono.git] / mcs / class / System.Data / System.Data.Common / SchemaTableOptionalColumn.cs
1 //
2 // System.Data.Common.SchemaTableOptionalColumn.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 sealed class SchemaTableOptionalColumn 
14         {
15                 #region Fields
16                         public static readonly string BaseCatalogName = "BaseCatalogName";
17                         public static readonly string BaseServerName = "BaseServerName";
18                         public static readonly string IsAutoIncrement = "IsAutoIncrement";
19                         public static readonly string IsHidden = "IsHidden";
20                         public static readonly string IsReadOnly = "IsReadOnly";
21                         public static readonly string IsRowVersion = "IsRowVersion";
22                         public static readonly string ProviderSpecificDataType = "ProviderSpecificDataType";
23
24                 #endregion // Fields
25         }
26 }
27
28 #endif // NET_2_0