namespace Caliburn.Micro.Core {
    /// 
    /// Denotes a node within a parent/child hierarchy.
    /// 
    public interface IChild {
        /// 
        /// Gets or Sets the Parent
        /// 
        object Parent { get; set; }
    }
    /// 
    /// Denotes a node within a parent/child hierarchy.
    /// 
    /// The type of parent.
    public interface IChild : IChild {
        /// 
        /// Gets or Sets the Parent
        /// 
        new TParent Parent { get; set; }
    }
}