重构了底层,方便向Android、Web、Linux进行跨平台迁移

This commit is contained in:
fengjiayi
2024-09-15 12:15:32 +08:00
parent 0271825fa9
commit 19247b5afe
51 changed files with 4987 additions and 1526 deletions

View File

@@ -24,6 +24,8 @@ namespace Serein.Library.Attributes
public bool Scan { get; set; } = true;
}
/// <summary>
/// 标记一个方法是什么类型加载dll后用来拖拽到画布中
/// </summary>
@@ -40,10 +42,14 @@ namespace Serein.Library.Attributes
MethodTips = methodTips;
LockName = lockName;
}
public bool Scan { get; set; }
public string MethodTips { get; }
public NodeType MethodDynamicType { get; }
public string LockName { get; }
public bool Scan;
public string MethodTips;
public NodeType MethodDynamicType;
/// <summary>
/// 推荐触发器手动设置返回类型
/// </summary>
public Type ReturnType;
public string LockName;
}
}