13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
|
|
using DTS.Common.Classes;
|
||
|
|
using DTS.Common.Enums.Sensors;
|
||
|
|
using Microsoft.VisualBasic.FileIO;
|
||
|
|
|
||
|
|
namespace DTS.Common.Import.Interfaces
|
||
|
|
{
|
||
|
|
public interface IParseCSVTest
|
||
|
|
{
|
||
|
|
int Version { get; }
|
||
|
|
void ParseVersion(TextFieldParser parser, TestSetupImportData tsid);
|
||
|
|
}
|
||
|
|
}
|