12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
|
using DTS.Common.Classes;
|
||
|
|
using CsvHelper;
|
||
|
|
|
||
|
|
namespace DTS.Common.Import.Interfaces
|
||
|
|
{
|
||
|
|
public interface IParseCSVTest
|
||
|
|
{
|
||
|
|
int Version { get; }
|
||
|
|
void ParseVersion(CsvReader csvReader, TestSetupImportData tsid);
|
||
|
|
}
|
||
|
|
}
|