Files
serein-flow/Library.Core/Flow/NodeModel/SingleFlipflopNode.cs

13 lines
281 B
C#
Raw Normal View History

2024-08-06 16:09:46 +08:00
namespace Serein.Flow.NodeModel
2024-08-05 10:11:58 +08:00
{
public class SingleFlipflopNode : NodeBase
{
2024-08-06 16:09:46 +08:00
public override object Execute(DynamicContext context)
{
throw new NotImplementedException("无法以非await/async的形式调用触发器");
}
2024-08-05 10:11:58 +08:00
}
}