BOzza estensione models
This commit is contained in:
Binary file not shown.
@@ -42,6 +42,9 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="IobError.cs" />
|
||||
<Compile Include="IobSample.cs" />
|
||||
<Compile Include="IobSignal.cs" />
|
||||
<Compile Include="IobTask.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Iob.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Generico SEGNALE rilevato da IOB
|
||||
/// Va gestito da successivo layer di trasformazione Ingressi --> eventi su MP.IO
|
||||
/// </summary>
|
||||
public class IobSignal
|
||||
{
|
||||
/// <summary>
|
||||
/// Valore evento registrato (formato
|
||||
/// </summary>
|
||||
public string dataIN { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// DataOra evento registrato
|
||||
/// </summary>
|
||||
public DateTime TimeStamp { get; set; } = DateTime.Now;
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user