MET08RESIMAPCDE - v2.43.4 - MethodBaseName
This commit is contained in:
23
Adaptation/FileHandlers/RsM/Descriptor.cs
Normal file
23
Adaptation/FileHandlers/RsM/Descriptor.cs
Normal file
@ -0,0 +1,23 @@
|
||||
namespace Adaptation.FileHandlers.RsM;
|
||||
|
||||
public class Descriptor
|
||||
{
|
||||
|
||||
public string Layer { get; private set; }
|
||||
public string PSN { get; private set; }
|
||||
public string RDS { get; private set; }
|
||||
public string Reactor { get; private set; }
|
||||
public string Run { get; private set; }
|
||||
public string Zone { get; private set; }
|
||||
|
||||
public Descriptor(string layer, string psn, string rds, string reactor, string run, string zone)
|
||||
{
|
||||
Layer = layer;
|
||||
PSN = psn;
|
||||
RDS = rds;
|
||||
Reactor = reactor;
|
||||
Run = run;
|
||||
Zone = zone;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user