20 lines
515 B
C#
20 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SystemX.Product.CP.TRA.Extract
|
|
{
|
|
public class TestList
|
|
{
|
|
public int TestListFileNo { get; set; }
|
|
public int StepID { get; set; }
|
|
public int StepVersion { get; set; }
|
|
public string StepDesc { get; set; }
|
|
public string SpecMin { get; set; }
|
|
public string SpecMax { get; set; }
|
|
public string Dim { get; set; }
|
|
}
|
|
}
|