From 5bfa2ca5bc1979e4a12c4e96abe2fe69d8295a81 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 24 Jun 2019 15:07:32 +0200 Subject: [PATCH] Altri appunti... --- MTC_Adapter/OPC-UA-REDIS/DataModelClass.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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