init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using DTS.Common.Converters;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.Sensors
|
||||
{
|
||||
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||||
public enum SensitivityInspectionType
|
||||
{
|
||||
[Description("SensitivityInspection_NotSet")]
|
||||
NotSet = 0,
|
||||
[Description("SensitivityInspection_Required")]
|
||||
Required = 1,
|
||||
[Description("SensitivityInspection_Cleared")]
|
||||
Cleared = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user