using System.Collections.Generic; namespace Inspectron.Settings { public interface ITreeView { /// /// Gets the root object of the tree view object Root { get; } /// /// Obtains enumeration of the children of the given parent object /// Parent object /// Enumeration of children of the parent object IEnumerable GetChildren(object parent); } }