mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
15 lines
305 B
C#
15 lines
305 B
C#
|
|
using Serein.NodeFlow;
|
|||
|
|
|
|||
|
|
namespace Serein.NodeFlow.Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public class SingleFlipflopNode : NodeBase
|
|||
|
|
{
|
|||
|
|
public override object Execute(DynamicContext context)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException("无法以非await/async的形式调用触发器");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|