using System.ComponentModel;
namespace Hylasoft.Opc.Common
{
///
/// Represents the quality of the value captured
///
public enum Quality
{
///
/// Quality: Unknown, the value of the quality could not be inferred by the library
///
[Description("Unknown")]
Unknown,
///
/// Quality: Good
///
[Description("Good")]
Good,
///
/// Quality: Bad
///
[Description("Bad")]
Bad
}
}