mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
23 lines
549 B
C#
23 lines
549 B
C#
namespace Serein.Script
|
|
{
|
|
public class SereinScriptMethodInfo
|
|
{
|
|
public string ClassName { get; set; }
|
|
public string MethodName { get; set; }
|
|
|
|
public Type? ReturnType { get; set; }
|
|
|
|
public bool IsAsync { get; set; }
|
|
|
|
public List<SereinScriptParamInfo> ParamInfos { get; set; }
|
|
|
|
public string CsharpCode { get; set; }
|
|
|
|
public class SereinScriptParamInfo
|
|
{
|
|
public string ParamName { get; set; }
|
|
public Type ParameterType { get; set; }
|
|
}
|
|
}
|
|
}
|