2002-04-27 Daniel Morgan <danmorg@sc.rr.com>
[mono.git] / mcs / class / System.Data / System.Data / PropertyCollection.cs
1 //
2 // System.Data.PropertyCollection.cs
3 //
4 // Author:
5 //    Daniel Morgan <danmorg@sc.rr.com>
6 //
7 // (c) Ximian, Inc. 2002
8 //
9
10 using System;
11 using System.Collections;
12
13 namespace System.Data
14 {
15         /// <summary>\r
16         /// a collection of properties that can be added to \r
17         /// DataColumn, DataSet, or DataTable.\r
18         /// The ExtendedProperties property of a \r
19         /// DataColumn, DataSet, or DataTable class can\r
20         /// retrieve a PropertyCollection.\r
21         /// </summary>
22         public class PropertyCollection : Hashtable {
23                 [MonoTODO]
24                 public PropertyCollection() {
25                 }
26
27                 // the only public methods and properties 
28                 // are all inherited from Hashtable
29         }
30 }