* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / PropertyGridEntry.cs
1 using System;
2 using System.ComponentModel;
3
4 namespace System.Windows.Forms.PropertyGridInternal {
5         /// <summary>
6         /// Summary description for PropertyGridEntry.
7         /// </summary>
8         internal class PropertyGridEntry : GridEntry {
9                 public PropertyGridEntry() {
10                         //
11                         // TODO: Add constructor logic here
12                         //
13                 }
14
15                 public PropertyGridEntry(object obj, PropertyDescriptor prop_desc) : base(obj, prop_desc) {
16                 }
17         }
18 }