MET08DDUPSFS6420 - v2.47.0 - 1t

This commit is contained in:
2022-10-11 11:23:22 -07:00
parent ba0a3d65d1
commit 967c918a06
5 changed files with 165 additions and 41 deletions

View File

@ -4,18 +4,22 @@ public class Descriptor
{
public string Employee { get; private set; }
public string Layer { get; private set; }
public string Lot { get; private set; }
public string PSN { get; private set; }
public string RDS { get; private set; }
public string Reactor { get; private set; }
public string Zone { get; private set; }
public Descriptor(string employee, string lot, string psn, string rds, string reactor)
public Descriptor(string employee, string layer, string lot, string psn, string rds, string reactor, string zone)
{
Employee = employee;
Layer = layer;
Lot = lot;
PSN = psn;
RDS = rds;
Reactor = reactor;
Zone = zone;
}
}