HelpData.cs 329 B

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. }