57 lines
1.1 KiB
C#
57 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace DataPROWin7.DataModel
|
|
{
|
|
public enum IsoChannelSensorCompatibilityLevels
|
|
{
|
|
DontWarn,
|
|
Warn,
|
|
DontAllow
|
|
}
|
|
public enum SupportedExportFormats
|
|
{
|
|
[Description("CSV")]
|
|
csv,
|
|
[Description("Diadem")]
|
|
diadem,
|
|
[Description("ISO")]
|
|
iso,
|
|
[Description("SOMAT")]
|
|
somat,
|
|
[Description("TDAS")]
|
|
tdas,
|
|
[Description("TSV")]
|
|
tsv,
|
|
[Description("TTS")]
|
|
tts,
|
|
[Description("RDF")]
|
|
rdf,
|
|
[Description("TDMS")]
|
|
tdms,
|
|
[Description("DDAS")]
|
|
ddas,
|
|
[Description("HDF5")]
|
|
hdf,
|
|
[Description("XLSX")]
|
|
// ReSharper disable once InconsistentNaming
|
|
xlsx,
|
|
//DataPRO 3.3, IRIG 106 Chapter 10 export
|
|
[Description("Chapter10")]
|
|
chapter10,
|
|
[Description("ASC")]
|
|
asc,
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum StrictLevel
|
|
{
|
|
Strict,
|
|
UpdateTable,
|
|
CheckoutOnly,
|
|
QuickCheckout
|
|
}
|
|
}
|