// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex { using Perspex.Collections; /// /// Represents a node in the logical tree. /// public interface ILogical { /// /// Gets the logical parent. /// ILogical LogicalParent { get; } /// /// Gets the logical children. /// IPerspexReadOnlyList LogicalChildren { get; } } }