18 lines
519 B
Plaintext
18 lines
519 B
Plaintext
|
|
using System;
|
||
|
|
using System.ComponentModel;
|
||
|
|
using DTS.Common.Converters;
|
||
|
|
|
||
|
|
namespace DTS.Common.Enums.Sensors
|
||
|
|
{
|
||
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||
|
|
public enum CalibrationBehaviors
|
||
|
|
{
|
||
|
|
[Description("CalibrationBehaviors_LinearIfAvailable")]
|
||
|
|
LinearIfAvailable,
|
||
|
|
[Description("CalibrationBehaviors_NonLinearIfAvailable")]
|
||
|
|
NonLinearIfAvailable,
|
||
|
|
[Description("CalibrationBehaviors_UseBothIfAvailable")]
|
||
|
|
UseBothIfAvailable
|
||
|
|
}
|
||
|
|
}
|