using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Help.HelpSystem { public class HelpChapter { private List topics = new List(); public List Topics { get { return topics; } } public string Application { get; set; } public string Title { get; set; } public string Filename { get; set; } public HelpChapter(string app = "", string title = "", string filename = "") { Application = app; Title = title; Filename = filename; } } }