17 lines
313 B
C#
17 lines
313 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.TestMethods.FixedStartDeferredEvaluation
|
|
{
|
|
public class IntermediateData
|
|
{
|
|
public bool Compound;
|
|
public string TestName;
|
|
public int TestPart;
|
|
public string[] StartImages;
|
|
public string[] EndImages;
|
|
}
|
|
}
|