using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Help.HelpSystem { public class HelpTopic { public string Title { get; set; } public string Filename { get; set; } public string Context { get; set; } public bool IsSearchResult { get; set; } public HelpTopic(string title = "", string filename = "", string context = "") { Title = title; Filename = filename; Context = context; IsSearchResult = (context != ""); } } }