18 lines
296 B
C#
18 lines
296 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace XylemCommonUiLegacyGenCtl.Enums
|
|
{
|
|
public enum LegacyCalibrationResult
|
|
{
|
|
Pending,
|
|
Good,
|
|
BadIgnor,
|
|
BadRetry,
|
|
BadAbort,
|
|
CheckAllMeters
|
|
}
|
|
}
|