Files
HLib/Batch/DTO/StepDto.cs
T
2026-06-01 13:23:34 +09:00

15 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.Batch.DTO
{
public class StepDto
{
public string StepNo { get; set; } = string.Empty;
public string StepSignature { get; set; } = string.Empty;
}
}