using System; using System.ComponentModel; namespace System.Windows.Forms.PropertyGridInternal { /// /// Summary description for PropertyGridEntry. /// internal class PropertyGridEntry : GridEntry { public PropertyGridEntry() { // // TODO: Add constructor logic here // } public PropertyGridEntry(object obj, PropertyDescriptor prop_desc) : base(obj, prop_desc) { } } }