MET08DDUPSP1TBI - v2.43.4 - MethodBaseName

This commit is contained in:
2022-08-08 16:27:23 -07:00
parent ee67aa5403
commit 90c44cffbb
35 changed files with 1131 additions and 238 deletions

View File

@ -0,0 +1,21 @@
namespace Adaptation.FileHandlers.txt;
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;
}
}