MET08THFTIRQS408M - v2.43.4 - Builtin MonA, Run with layer
and 1T
This commit is contained in:
25
Adaptation/FileHandlers/QS408M/Descriptor.cs
Normal file
25
Adaptation/FileHandlers/QS408M/Descriptor.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user