using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.AutoTest.Script.Models
{
///
/// ステップDTO(1ステップの情報)
///
public class StepDTO
{
///
/// ステップ番号
///
public string StepNo { get; set; }
///
/// ステップテキスト
///
public string StepText { get; set; }
public StepDTO(string stepNo, string stepText)
{ this.StepNo = stepNo; this.StepText = stepText; }
}
}