Files
DP44/Common/DTS.Common/Enums/ImportFormats.cs

29 lines
599 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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
}
}