MET08DDUPSFS6420 - v2.43.4 - MethodBaseName

This commit is contained in:
2022-08-08 16:27:52 -07:00
parent b5244f1166
commit f8ca86e5a0
50 changed files with 1334 additions and 354 deletions

View File

@ -0,0 +1,21 @@
namespace Adaptation.FileHandlers.pcl;
public class Descriptor
{
public string Employee { 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 Descriptor(string employee, string lot, string psn, string rds, string reactor)
{
Employee = employee;
Lot = lot;
PSN = psn;
RDS = rds;
Reactor = reactor;
}
}