2002-10-25 Tim Coleman (tim@timcoleman.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 using System.ComponentModel;
13
14 namespace System.Data
15 {
16         /// <summary>\r
17         /// a collection of properties that can be added to \r
18         /// DataColumn, DataSet, or DataTable.\r
19         /// The ExtendedProperties property of a \r
20         /// DataColumn, DataSet, or DataTable class can\r
21         /// retrieve a PropertyCollection.\r
22         /// </summary>
23         public class PropertyCollection : Hashtable {
24                 [MonoTODO]
25                 public PropertyCollection() {
26                 }
27
28                 // the only public methods and properties 
29                 // are all inherited from Hashtable
30         }
31 }