Files
serein-flow/Library/Api/IFlipflopContext.cs

12 lines
243 B
C#
Raw Normal View History

using Serein.Library.Enums;
using Serein.Library.NodeFlow.Tool;
namespace Serein.Library.Api
{
public interface IFlipflopContext
{
2024-09-15 22:07:10 +08:00
FlipflopStateType State { get; set; }
TriggerData TriggerData { get; set; }
}
}