MET08THFTIRQS408M - v2.43.4 - Builtin MonA, Run with layer

and 1T
This commit is contained in:
2022-09-13 08:56:23 -07:00
parent 09f85078f4
commit 0626e4f4e3
41 changed files with 1412 additions and 425 deletions

View File

@ -0,0 +1,25 @@
namespace Adaptation.FileHandlers.QS408M;
public class Descriptor
{
public string Employee { get; private set; }
public string Layer { get; private set; }
public string PSN { get; private set; }
public string RDS { get; private set; }
public string Reactor { get; private set; }
public string Wafer { get; private set; }
public string Zone { get; private set; }
public Descriptor(string employee, string layer, string psn, string rds, string reactor, string wafer, string zone)
{
Employee = employee;
Layer = layer;
PSN = psn;
RDS = rds;
Reactor = reactor;
Wafer = wafer;
Zone = zone;
}
}