Protokolll inhalt erweitert
This commit is contained in:
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