28 lines
707 B
C#
28 lines
707 B
C#
using KssSmaPlaLib.AutoTest.Command.Definition;
|
|
using KssSmaPlaLib.AutoTest.Script.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KssSmaPlaLib.AutoTest.Script.Models
|
|
{
|
|
/// <summary>
|
|
/// パース済みのステップDTO(1ステップの情報)
|
|
/// </summary>
|
|
public class ParsedStepDTO
|
|
{
|
|
public string StepNo => Raw.StepNo;
|
|
public CommandEnumUxer.Command Command { get; set; }
|
|
public List<string> Parameters { get; set; }
|
|
public StepDTO Raw { get; }
|
|
|
|
public ParsedStepDTO(StepDTO raw)
|
|
{
|
|
Raw = raw;
|
|
}
|
|
}
|
|
}
|