File size: 329 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 | using System.Collections.Generic;
namespace Unity.PlasticSCM.Editor.Help
{
internal class HelpData
{
internal List<HelpFormat> FormattedBlocks = new List<HelpFormat>();
internal List<HelpLink> Links = new List<HelpLink>();
internal string CleanText;
internal bool ShouldShowAgain;
}
} |