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

21 lines
386 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
2024-08-06 16:09:46 +08:00
}
}