Files
SystemX.Web/Projects/WebClient/Web.Tra/Model/IDataModel.cs
2025-09-04 14:32:19 +09:00

21 lines
733 B
C#

namespace Web.Tra.Model
{
public interface IDataModel
{
public DateTime? TestDate { get; set; }
public string StationName { get; set; }
public string Host { get; set; }
public string Section { get; set; }
public string ModelName { get; set; }
public string ProductNo { get; set; }
public string TestCode { get; set; }
public string ParentNo { get; set; }
public string FileCode { get; set; }
public string FileVersion { get; set; }
public int? StepVersion { get; set; }
public string FirstTestTime { get; set; }
public string FinalTestTime { get; set; }
public string TestListCntID { get; set; }
}
}