Files
met08ddupsp1tbi/Adaptation/FileHandlers/TIBCO/Transport/CommonB.cs
Mike Phares e651c2804c Now relying on pipeline to copy files from file shares for ghost-pcl and linc-pdfc
Now using entered-date-time-filter and load-signature-date-time-filter for logistics query
2025-07-22 15:28:05 -07:00

25 lines
680 B
C#

namespace Adaptation.FileHandlers.TIBCO.Transport;
public class CommonB
{
public string Layer { get; }
public string LoadLockSide { get; }
public int? RDSNumber { get; }
public string ReactorType { get; }
public string PSN { get; }
public int? ReactorNumber { get; }
public string Zone { get; }
public CommonB(string layer, string loadLockSide, int? rdsNumber, string reactorType, string psn, int? reactorNumber, string zone)
{
Layer = layer;
LoadLockSide = loadLockSide;
RDSNumber = rdsNumber;
ReactorType = reactorType;
PSN = psn;
ReactorNumber = reactorNumber;
Zone = zone;
}
}