Mike Phares 0788998e09 using Adaptation.FileHandlers.txt;
Sequence as a string
Job Update using null
2025-02-17 12:45:31 -07:00

30 lines
672 B
C#

namespace Adaptation.FileHandlers.TIBCO.Transport;
#nullable enable
public class Common
{
public string? Layer { get; }
public string? PSN { get; }
public int? RDSNumber { get; }
public int? ReactorNumber { get; }
public string? Zone { get; }
public string? Employee { get; }
public Common(string? layer,
string? psn,
int? rdsNumber,
int? reactor,
string? zone,
string? employee)
{
Layer = layer;
PSN = psn;
RDSNumber = rdsNumber;
ReactorNumber = reactor;
Zone = zone;
Employee = employee;
}
}