using System.Collections.Generic;
namespace MS.SDKMSDNKeywordIndex
{
public class TocNode
{
public TocNode(string title, string url, string id)
{
this.Url = url;
this.Id = id;
this.Title = title;
this.hasChildren = true;
}
public TocNode()
{
this.hasChildren = true;
}
public bool hasChildren { get; set; }
public string Title { get; set; }
public string Url { get; set; }
public string Id { get; set; }
}
}