20 lines
598 B
C#
20 lines
598 B
C#
using KssSmaPlaLib.AutoTest.Script;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KssSmaPlaLib.AutoTest.Script.Models
|
|
{
|
|
/// <summary>
|
|
/// UIテストステップ全体情報
|
|
/// </summary>
|
|
public class StepInfoDTO
|
|
{
|
|
public List<ParsedStepDTO> StepList { get; set; } = new List<ParsedStepDTO>();
|
|
public string InitialStepName { get; set; } // 最初に実行するステップ名
|
|
public string Description { get; set; } // ステップ群の説明(任意)
|
|
}
|
|
}
|