We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 996851d commit ab5bb23Copy full SHA for ab5bb23
2 files changed
src/extensions/BootstrapBlazor.OpcDa/OpcItem.cs
@@ -4,8 +4,6 @@
4
5
namespace BootstrapBlazor.OpcDa;
6
7
-using Opc.Da;
8
-
9
/// <summary>
10
/// OPC Item 配置实体类
11
/// </summary>
src/extensions/BootstrapBlazor.OpcDa/Quality.cs
@@ -0,0 +1,21 @@
1
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
2
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
+// Website: https://www.blazor.zone or https://argozhang.github.io/
+
+namespace BootstrapBlazor.OpcDa;
+/// <summary>
+/// Opc Item Quality 枚举
+/// </summary>
+public enum Quality
+{
12
+ /// <summary>
13
+ /// 不可信
14
+ /// </summary>
15
+ Bad,
16
17
18
+ /// 可信
19
20
+ Good
21
+}
0 commit comments