Files
serein-flow/NodeFlow/Model/SingleActionNode.cs

28 lines
675 B
C#
Raw Normal View History

using Serein.Library.Api;
using Serein.Library;
2024-10-27 00:54:10 +08:00
using System.Security.AccessControl;
namespace Serein.NodeFlow.Model
2024-08-06 16:09:46 +08:00
{
/// <summary>
/// 单动作节点(用于动作控件)
/// </summary>
public class SingleActionNode : NodeModelBase
2024-08-06 16:09:46 +08:00
{
public SingleActionNode(IFlowEnvironment environment):base(environment)
{
}
2024-10-28 21:52:45 +08:00
/// <summary>
/// 执行方法
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public override Task<object> ExecutingAsync(IDynamicContext context)
{
return base.ExecutingAsync(context);
}
2024-08-06 16:09:46 +08:00
}
}