12 lines
194 B
C#
12 lines
194 B
C#
namespace DTS.Common.Enums.Sensors
|
|
{
|
|
public enum SensorStatus
|
|
{
|
|
Available,
|
|
InUse,
|
|
OutForService,
|
|
OutForCalibration,
|
|
Retired
|
|
}
|
|
}
|