forked from aly/qstbak
muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
|
|
@ -0,0 +1,17 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace Questionable.Controller.Conditions;
|
||||
|
||||
[JsonConverter(typeof(StopConditionConverter))]
|
||||
internal abstract class StopCondition
|
||||
{
|
||||
public EStopConditionMode Mode { get; set; } = EStopConditionMode.Stop;
|
||||
|
||||
public abstract bool IsSession { get; }
|
||||
|
||||
public abstract EStopConditionType Type { get; }
|
||||
|
||||
public abstract bool Evaluate(StopEvaluationContext context);
|
||||
|
||||
public abstract string GetDescription();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue