22 lines
458 B
C#
22 lines
458 B
C#
namespace DTS.Storage
|
|
{
|
|
public class DigitalInputSettings
|
|
{
|
|
public const string Table = "tblDigitalInputSetting";
|
|
public enum Fields
|
|
{
|
|
SettingName,
|
|
SettingMode,
|
|
ScaleMultiplier,
|
|
LastModified,
|
|
LastModifiedBy,
|
|
SensorId,
|
|
UserValue1,
|
|
UserValue2,
|
|
UserValue3,
|
|
UserTags
|
|
}
|
|
}
|
|
|
|
}
|