diff --git a/MTC_Adapter/OPC-UA-REDIS/DataModelClass.cs b/MTC_Adapter/OPC-UA-REDIS/DataModelClass.cs
index 060689b..242ce30 100644
--- a/MTC_Adapter/OPC-UA-REDIS/DataModelClass.cs
+++ b/MTC_Adapter/OPC-UA-REDIS/DataModelClass.cs
@@ -14,6 +14,14 @@ namespace OPC_UA_REDIS
#region oggetti di base
+ public class Component
+ {
+ public string name { get; set; }
+ }
+
+ ///
+ /// Classe di base oggetti OPC-UA in Datamodel da deserializzare
+ ///
public class ouBaseObj
{
public string SymbolicName { get; set; }
@@ -73,6 +81,25 @@ namespace OPC_UA_REDIS
/// Variable Emergency
///
public ouVariable Emergency { get; set; }
+ ///
+ /// Variable Power
+ ///
+ public ouVariable Power { get; set; }
+ ///
+ /// Variable Mode
+ ///
+ public ouVariable Mode { get; set; }
+ ///
+ /// Variable ActiveTime
+ ///
+ public ouVariable ActiveTime { get; set; }
+
+#if false
+ public Component cnc
+ {
+
+ }
+#endif
}
#endregion