Protokolll inhalt erweitert
This commit is contained in:
@@ -8,6 +8,6 @@ namespace SanShared
|
||||
{
|
||||
public interface ITemperature
|
||||
{
|
||||
double GetTemperatur();
|
||||
double GetTemperatur(out string message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -46,6 +46,7 @@
|
||||
<Compile Include="IMakeProtokol.cs" />
|
||||
<Compile Include="ITemperature.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="UVcsvStrukture.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
19
SanShared/UVcsvStrukture.cs
Normal file
19
SanShared/UVcsvStrukture.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SanShared
|
||||
{
|
||||
public class UVcsvStrukture
|
||||
{
|
||||
DateTime zeitstempel;
|
||||
double temperatur;
|
||||
double druck;
|
||||
|
||||
public DateTime Zeitstempel { get => zeitstempel; set => zeitstempel = value; }
|
||||
public double Temperatur { get => temperatur; set => temperatur = value; }
|
||||
public double Druck { get => druck; set => druck = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user