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

11 lines
191 B
C#

using Serein.Library.Enums;
namespace Serein.Library.Api
{
public interface IFlipflopContext
{
FlowStateType State { get; set; }
object Data { get; set; }
}
}