18 lines
378 B
C#
18 lines
378 B
C#
|
|
namespace TBF.Rig.Sequences
|
|
{
|
|
public class DeferredTestEvaluationData
|
|
{
|
|
public Config.Entities.Test Test;
|
|
public int RepetNr;
|
|
public object IntermediateData;
|
|
|
|
public DeferredTestEvaluationData(Config.Entities.Test test, int repetNr, object intermediateData)
|
|
{
|
|
this.Test = test;
|
|
this.RepetNr = repetNr;
|
|
this.IntermediateData = intermediateData;
|
|
}
|
|
}
|
|
}
|