18 lines
519 B
C#
18 lines
519 B
C#
|
|
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
|
|||
|
|
}
|
|||
|
|
}
|