No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HelpData.cs 329B

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