Split violations from Markdown
ProcessDataStandardFormat over Tuple MoveMatchingFiles to use ProcessDataStandardFormatMapping
This commit is contained in:
@ -1,21 +1 @@
|
||||
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