diff --git a/CVCncLib/CVCncLib.dll b/CVCncLib/CVCncLib.dll index 32a862a2..52d2838e 100644 Binary files a/CVCncLib/CVCncLib.dll and b/CVCncLib/CVCncLib.dll differ diff --git a/Iob.Model/Iob.Model.csproj b/Iob.Model/Iob.Model.csproj index b0a3d5e9..b289f98a 100644 --- a/Iob.Model/Iob.Model.csproj +++ b/Iob.Model/Iob.Model.csproj @@ -42,6 +42,9 @@ + + + diff --git a/Iob.Model/IobSample.cs b/Iob.Model/IobSample.cs new file mode 100644 index 00000000..76a770b2 --- /dev/null +++ b/Iob.Model/IobSample.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Iob.Model +{ + class IobSample + { + } +} diff --git a/Iob.Model/IobSignal.cs b/Iob.Model/IobSignal.cs new file mode 100644 index 00000000..97365adc --- /dev/null +++ b/Iob.Model/IobSignal.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Iob.Model +{ + /// + /// Generico SEGNALE rilevato da IOB + /// Va gestito da successivo layer di trasformazione Ingressi --> eventi su MP.IO + /// + public class IobSignal + { + /// + /// Valore evento registrato (formato + /// + public string dataIN { get; set; } = 0; + + /// + /// DataOra evento registrato + /// + public DateTime TimeStamp { get; set; } = DateTime.Now; + } +} \ No newline at end of file diff --git a/Iob.Model/IobTask.cs b/Iob.Model/IobTask.cs new file mode 100644 index 00000000..ee0540e9 --- /dev/null +++ b/Iob.Model/IobTask.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Iob.Model +{ + class IobTask + { + } +}