14 lines
250 B
C#
14 lines
250 B
C#
|
namespace Tapeti.Flow.Default
|
|||
|
{
|
|||
|
internal class StateYieldPoint : IStateYieldPoint
|
|||
|
{
|
|||
|
public bool StoreState { get; }
|
|||
|
|
|||
|
|
|||
|
public StateYieldPoint(bool storeState)
|
|||
|
{
|
|||
|
StoreState = storeState;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|