21 lines
505 B
C#
21 lines
505 B
C#
namespace Adaptation.Shared;
|
|
|
|
public class ProcessData
|
|
{
|
|
|
|
protected readonly string _Logistics;
|
|
protected readonly string[] _Columns;
|
|
protected readonly string[] _BodyLines;
|
|
|
|
public string Logistics => _Logistics;
|
|
public string[] Columns => _Columns;
|
|
public string[] BodyLines => _BodyLines;
|
|
|
|
public ProcessData(string logistics, string[] columns, string[] bodyLines)
|
|
{
|
|
_Logistics = logistics;
|
|
_Columns = columns;
|
|
_BodyLines = bodyLines;
|
|
}
|
|
|
|
} |