11 lines
282 B
C#
11 lines
282 B
C#
namespace Adaptation.FileHandlers.csv;
|
|
|
|
public class CommaSeparatedValuesConfiguration
|
|
{
|
|
|
|
public int Columns { get; set; }
|
|
public int TestIndex { get; set; }
|
|
public int RegularExpressionGroupCount { get; set; }
|
|
public string RegularExpressionPattern { get; set; }
|
|
|
|
} |