MET08DDUPSP1TBI - v2.43.4 - MethodBaseName
This commit is contained in:
21
Adaptation/FileHandlers/txt/Descriptor.cs
Normal file
21
Adaptation/FileHandlers/txt/Descriptor.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user