ExceptionBranchModel.cs 403 B

12345678910111213
  1. using TeamAAS.FlowEditor.Plugins;
  2. namespace Plugins.Standard.Models
  3. {
  4. [System.Serializable]
  5. /// <summary>
  6. /// 异常分支插件模型 - 无可编辑属性,仅占位以满足 BasePlugin&lt;TModel&gt; 约束。
  7. /// 双击节点不弹任何窗(OpenNodeEditor 中按 Category 直接 return)。
  8. /// </summary>
  9. public class ExceptionBranchModel : BasePluginModel
  10. {
  11. }
  12. }