mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
19 lines
389 B
C#
19 lines
389 B
C#
using Serein.Library.Api;
|
|
using Serein.Library;
|
|
using System.Security.AccessControl;
|
|
|
|
namespace Serein.NodeFlow.Model.Node
|
|
{
|
|
/// <summary>
|
|
/// 单动作节点(用于动作控件)
|
|
/// </summary>
|
|
public class SingleActionNode : NodeModelBase
|
|
{
|
|
public SingleActionNode(IFlowEnvironment environment):base(environment)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|