ProcessData over Tuple
This commit is contained in:
21
Adaptation/Shared/ProcessData.cs
Normal file
21
Adaptation/Shared/ProcessData.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user