Files
DP44/Common/DTS.Common.Storage/.svn/pristine/2e/2ea527f700e86185f0ef79dac8d553582156db46.svn-base

75 lines
2.9 KiB
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00

namespace DTS.Storage
{
public class DAS
{
public const string Table = "tblDAS";
public enum Fields
{
SerialNumber,
Type,
MaxModules,
MaxMemory,
MaxSampleRate,
MinSampleRate,
FirmwareVersion,
CalDate,
ProtocolVersion,
LastModified,
LastModifiedBy,
Version,
LocalOnly,
LastUsed,
LastUsedBy,
Connection,
Channels,
Position,
ChannelTypes,
Reprogramable,
Reconfigurable,
IsModule
}
public const string TableDASChannels = "tblDASChannels";
public enum DASChannelFields
{
HardwareId,
ChannelIdx,
SupportedBridges,
SupportedExcitations,
DASDisplayOrder,
LocalOnly,
SupportedDigitalInputModes,
SupportedSquibFireModes,
SupportedDigitalOutputModes,
ModuleSerialNumber,
ModuleArrayIndex
}
public const string SLICE1_PROTOTYPE = "SLICE1 Prototype";
public const string SLICEPRO_PROTOTYPE = "SLICEPRO Prototype";
public const string PROTOTYPE_POSITION = "Prototype";
public const string SLICE1_5PROTOTYPE = "SLICE+ Prototype";
public const string G5_VDSPROTOTYPE = "G5 VDS Prototype";
public const string G5_IPORTPROTOTYPE = "G5 iPort Prototype";
public const string TDASPRO_8MRack = "TDASPro Rack 8M Prototype";
public const string TDASPRO_4MRack = "TDASPRO Rack 4M Prototype";
public const string ECM_PROTOTYPE = "SLICE ECM Prototype";
public const string SLE_PROTOTYPE = "SLICE PRO Lab Ethernet Prototype";
public const string SDB_PROTOTYPE = "SLICE Distributor Prototype";
public const string Slice_NanoPROTOTYPE = "SLICE Nano Prototype";
public const string Slice_MicroPROTOTYPE = "SLICE Micro Prototype";
public const string SLICEPRODIM_PROTOTYPE = "SLICE Pro DIM";
public const string SLICEPROSLD_PROTOTYPE = "SLICE PRO Lab DIM";
public const string SLICEPROTOM_PROTOTYPE = "SLICE Pro TOM";
public const string SLICEPROSLT_PROTOTYPE = "SLICE PRO Lab TOM";
public const string SLICEPROSIM_PROTOTYPE = "SLICE Pro SIM";
public const string SLICEPROSLS_PROTOTYPE = "SLICE PRO Lab SIM";
public const string SLICE1_5_MicroPROTOTYPE = "SLICE MICRO BASE+ Prototype";
public const string G5_INDUMMYPROTOTYPE = "G5 InDummy Prototype";
public const string SG5_PROTOTYPE = "SLICE G5 Prototype";
public const string TDASPRO_LabRack = "TDAS PRO Lab Rack";
public const string SLICE6_PROTOTYPE = "SLICE6 Prototype";
public const string SLICE6DB_PROTOTYPE = "SLICE6Db Prototype";
}
}