16 lines
327 B
Plaintext
16 lines
327 B
Plaintext
|
|
namespace DTS.Storage
|
||
|
|
{
|
||
|
|
public abstract class TestObjectChannelSettings
|
||
|
|
{
|
||
|
|
public const string TableName = "tblTestObjectChannelSettings";
|
||
|
|
public enum Fields
|
||
|
|
{
|
||
|
|
TestObjectSerial,
|
||
|
|
ChannelId,
|
||
|
|
Setting,
|
||
|
|
SensorSerial
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|