MET08THFTIRSTRATUS - v2.43.4 - Builtin MonA, Run with layer and

1T
This commit is contained in:
2022-09-13 08:58:25 -07:00
parent 081513e457
commit 8e16a0bae9
42 changed files with 1493 additions and 388 deletions

View File

@ -0,0 +1,21 @@
namespace Adaptation.FileHandlers.Stratus;
public class Descriptor
{
public string Cassette { get; private set; }
public string Employee { get; private set; }
public string PSN { get; private set; }
public string RDS { get; private set; }
public string Reactor { get; private set; }
public Descriptor(string cassette, string employee, string psn, string rds, string reactor)
{
Cassette = cassette;
Employee = employee;
PSN = psn;
RDS = rds;
Reactor = reactor;
}
}