Ready to test v2.39.0

This commit is contained in:
2022-02-14 18:41:13 -07:00
parent 7531f7994a
commit 9b1beec8ce
109 changed files with 12615 additions and 14506 deletions

View File

@ -1,23 +1,20 @@
using System.Collections.Generic;
namespace Adaptation.FileHandlers.Stratus
namespace Adaptation.FileHandlers.Stratus;
public class Detail
{
public class Detail
{
public string HeaderUniqueId { get; set; }
public string Mean { get; set; }
public string PassFail { get; set; }
public string Position { get; set; }
public string Recipe { get; set; }
public string Slot { get; set; }
public string StdDev { get; set; }
public string UniqueId { get; set; }
public string Thickness { get; set; }
public string Wafer { get; set; }
public List<Point> Points { get; set; }
}
public string HeaderUniqueId { get; set; }
public string Mean { get; set; }
public string PassFail { get; set; }
public string Position { get; set; }
public string Recipe { get; set; }
public string Slot { get; set; }
public string StdDev { get; set; }
public string UniqueId { get; set; }
public string Thickness { get; set; }
public string Wafer { get; set; }
public List<Point> Points { get; set; }
}