MET08RESIMAPCDE - v2.47.0- Zone

This commit is contained in:
2022-10-12 08:29:52 -07:00
parent 6a9f1efeb6
commit ab0f5382ff
8 changed files with 321 additions and 118 deletions

View File

@ -3,6 +3,7 @@ namespace Adaptation.FileHandlers.txt;
public class Descriptor
{
public string Employee { get; private set; }
public string Layer { get; private set; }
public string PSN { get; private set; }
public string RDS { get; private set; }
@ -11,8 +12,9 @@ public class Descriptor
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)
public Descriptor(string employee, string layer, string psn, string rds, string reactor, string run, string title, string zone)
{
Employee = employee;
Layer = layer;
PSN = psn;
RDS = rds;