23 lines
599 B
C#
23 lines
599 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Help.HelpSystem
|
|
{
|
|
public class HelpChapter
|
|
{
|
|
private List<HelpTopic> topics = new List<HelpTopic>();
|
|
public List<HelpTopic> 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;
|
|
}
|
|
}
|
|
}
|