mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
28 lines
675 B
C#
28 lines
675 B
C#
using Serein.Library.Api;
|
|
using Serein.Library;
|
|
using System.Security.AccessControl;
|
|
|
|
namespace Serein.NodeFlow.Model
|
|
{
|
|
/// <summary>
|
|
/// 单动作节点(用于动作控件)
|
|
/// </summary>
|
|
public class SingleActionNode : NodeModelBase
|
|
{
|
|
public SingleActionNode(IFlowEnvironment environment):base(environment)
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 执行方法
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns></returns>
|
|
public override Task<object> ExecutingAsync(IDynamicContext context)
|
|
{
|
|
return base.ExecutingAsync(context);
|
|
}
|
|
}
|
|
}
|