for Push.

This commit is contained in:
nobobo
2026-06-01 13:23:34 +09:00
parent 9e093ea99f
commit a6550e9928
93 changed files with 10393 additions and 0 deletions
@@ -0,0 +1,16 @@
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;
}
}
}