mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
12 lines
243 B
C#
12 lines
243 B
C#
using Serein.Library.Enums;
|
|
using Serein.Library.NodeFlow.Tool;
|
|
|
|
namespace Serein.Library.Api
|
|
{
|
|
public interface IFlipflopContext
|
|
{
|
|
FlipflopStateType State { get; set; }
|
|
TriggerData TriggerData { get; set; }
|
|
}
|
|
}
|