33 lines
761 B
Plaintext
33 lines
761 B
Plaintext
|
|
namespace DTS.Storage
|
||
|
|
{
|
||
|
|
public abstract class Squib
|
||
|
|
{
|
||
|
|
public const string Table = "tblTOMSquibChannels";
|
||
|
|
public enum Fields
|
||
|
|
{
|
||
|
|
SquibDescription,
|
||
|
|
BypassCurrentFilter,
|
||
|
|
BypassVoltageFilter,
|
||
|
|
DelayMS,
|
||
|
|
DurationMS,
|
||
|
|
FireMode,
|
||
|
|
ISOCode,
|
||
|
|
MeasurementType,
|
||
|
|
SquibOutputCurrent,
|
||
|
|
SquibToleranceLow,
|
||
|
|
SquibToleranceHigh,
|
||
|
|
LimitDuration,
|
||
|
|
ArticleId,
|
||
|
|
LocalOnly,
|
||
|
|
Version,
|
||
|
|
LastModified,
|
||
|
|
LastModifiedBy,
|
||
|
|
UserValue1,
|
||
|
|
UserValue2,
|
||
|
|
UserValue3,
|
||
|
|
UserTags
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|