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