using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.ObjectModels.Help.TableOfContents { public class TOCNode { public class TOCNodeCollection : System.Collections.ObjectModel.Collection { } private string mvarLocation = String.Empty; /// /// The location of the Help topic pointed to by this . /// public string Location { get { return mvarLocation; } set { mvarLocation = value; } } private string mvarTitle = String.Empty; /// /// The title of the Help topic pointed to by this . /// public string Title { get { return mvarTitle; } set { mvarTitle = value; } } private TOCNode.TOCNodeCollection mvarNodes = new TOCNode.TOCNodeCollection(); public TOCNode.TOCNodeCollection Nodes { get { return mvarNodes; } } } }