17 lines
396 B
C#
17 lines
396 B
C#
using KssSmaPlaLib.AutoTest.Script.Models;
|
|
|
|
namespace KssSmaPlaLib.AutoTest.Script.Storage
|
|
{
|
|
public static class TestScriptStorageUxer
|
|
{
|
|
private static StepInfoDTO _stepInfo = null;
|
|
|
|
public static StepInfoDTO StepInfo { get { return _stepInfo; } }
|
|
|
|
public static void SetStepInfo(StepInfoDTO stepInfo)
|
|
{
|
|
_stepInfo = stepInfo;
|
|
}
|
|
}
|
|
}
|