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