29 lines
599 B
Plaintext
29 lines
599 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Import.Enums
|
|
{
|
|
public enum ImportFormats
|
|
{
|
|
NOT_SPECIFIED = 1,
|
|
DTS_XML = 2,
|
|
ISF = 3,
|
|
TSF = 4,
|
|
DTS_CSV = 5,
|
|
TTS_XML = 6,
|
|
CrashDesigner_XML = 7,
|
|
E2X = 8,
|
|
TTS_CSV = 9,
|
|
}
|
|
//FB 40758 type of file by number of test setups in file
|
|
public enum ImportFileFormat
|
|
{
|
|
NoTestSetup,
|
|
SingleTestSetup,
|
|
MultipleTestSetup
|
|
}
|
|
}
|