暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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