mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
整理了Serein.Library项目类文件,IDynamicContext、DynamicContext接口名称及实现类改为IFlowContext、FlowContext,使其与流程其它接口类命名风格统一。
This commit is contained in:
@@ -7,10 +7,10 @@ namespace Serein.Script
|
||||
/// <summary>
|
||||
/// 脚本使用流程上下文
|
||||
/// </summary>
|
||||
/// <param name="dynamicContext"></param>
|
||||
public ScriptInvokeContext(IDynamicContext dynamicContext)
|
||||
/// <param name="flowContext"></param>
|
||||
public ScriptInvokeContext(IFlowContext flowContext)
|
||||
{
|
||||
FlowContext = dynamicContext;
|
||||
FlowContext = flowContext;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -20,7 +20,7 @@ namespace Serein.Script
|
||||
{
|
||||
}
|
||||
|
||||
public IDynamicContext FlowContext{ get; }
|
||||
public IFlowContext FlowContext{ get; }
|
||||
|
||||
/// <summary>
|
||||
/// 定义的变量
|
||||
|
||||
Reference in New Issue
Block a user