From 3387e7b5aaed03170f811da9021fc6ab3b05e7fc Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Sat, 26 Sep 2020 12:23:03 +0200 Subject: [PATCH] BOzza estensione models --- CVCncLib/CVCncLib.dll | Bin 967680 -> 967680 bytes Iob.Model/Iob.Model.csproj | 3 +++ Iob.Model/IobSample.cs | 12 ++++++++++++ Iob.Model/IobSignal.cs | 25 +++++++++++++++++++++++++ Iob.Model/IobTask.cs | 12 ++++++++++++ 5 files changed, 52 insertions(+) create mode 100644 Iob.Model/IobSample.cs create mode 100644 Iob.Model/IobSignal.cs create mode 100644 Iob.Model/IobTask.cs diff --git a/CVCncLib/CVCncLib.dll b/CVCncLib/CVCncLib.dll index 32a862a2c3663ada6bd51f7019eb17466c0428bd..52d2838e760cdc4a6229c94476689308b50eebd3 100644 GIT binary patch delta 171 zcmZqZux{wEp3uSUdponSyS1CKwVSE6o4K`{rL~*2wVSQAo4vK0qqUo}wVSK8n|o_F zkL5yvTjGHRruFRJQ_mKuoX>9C(|%T^fzTj!i9J1PH82`J6rY!wq)oLW>IQ=FJvnwpcUS6q^sm|H$w UU?ZR0bp4Hd=eM(L;`<{A0AM^q6#xJL delta 169 zcmZqZux{wEp3uSU3wcMOU3Y7u@tJu2+23(SBti4-oTizp{|;51#|jsCWh-U;<(pMh1o#=lB?2 zY~W)E3U&!Lw_Z_b^_evL<6?%ESvcL2m$~+wLV$^ 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 + { + } +}