17 lines
372 B
C#
17 lines
372 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 TestResult
|
|
{
|
|
public int No { get; set; }
|
|
public int StepID { get; set; }
|
|
public double MeasVal { get; set; }
|
|
public string MeasValStr { get; set; }
|
|
}
|
|
}
|