Files
HLib/AutoTest/Script/Models/StepDTO.cs
T
2026-06-01 13:23:34 +09:00

28 lines
670 B
C#

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