Add Hyphen
Skip Tests Dual write PDSF for Metrology Viewer Removed IQS.Copy Version Error Message Added Climatec to Test.cs GetJobIdDirectory Remove and
This commit is contained in:
21
Adaptation/FileHandlers/TIBCO/Transport/Common.cs
Normal file
21
Adaptation/FileHandlers/TIBCO/Transport/Common.cs
Normal file
@ -0,0 +1,21 @@
|
||||
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
||||
|
||||
public class Common
|
||||
{
|
||||
|
||||
public string Layer { get; }
|
||||
public string PSN { get; }
|
||||
public int? RDSNumber { get; }
|
||||
public int? ReactorNumber { get; }
|
||||
public string Zone { get; }
|
||||
|
||||
public Common(string layer, string psn, int? rdsNumber, int? reactor, string zone)
|
||||
{
|
||||
Layer = layer;
|
||||
PSN = psn;
|
||||
RDSNumber = rdsNumber;
|
||||
ReactorNumber = reactor;
|
||||
Zone = zone;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user