MET08RESIMAPCDE - v2.43.4 - MethodBaseName

This commit is contained in:
2022-08-08 16:05:28 -07:00
parent 94b06b7de5
commit 1d7368c44e
69 changed files with 1763 additions and 356 deletions

View 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;
}
}