using System.Collections.Generic; using System; using System.Windows; namespace Microsoft.Windows.Controls.PropertyGrid { public class EditorDefinition : IEditorDefinition { public DataTemplate EditorTemplate { get; set; } private List _properties = new List(); public List Properties { get { return _properties; } set { _properties = value; } } public Type TargetType { get; set; } } }