Es können jetzt von xml 2006 importiert werden

This commit is contained in:
Husky
2018-07-21 11:57:06 +02:00
parent ea3b8c564a
commit 20388f5603
42 changed files with 815 additions and 42 deletions

View File

@@ -6,14 +6,25 @@ using System.Threading.Tasks;
namespace SanShared
{
/// <summary>
/// CSV Dateistruktur
/// </summary>
public class UVcsvStrukture
{
DateTime zeitstempel;
double temperatur;
double druck;
/// <summary>
/// Zeitstempel vom Eintrag
/// </summary>
public DateTime Zeitstempel { get => zeitstempel; set => zeitstempel = value; }
/// <summary>
/// Temperatur anzeige vom Eintrag
/// </summary>
public double Temperatur { get => temperatur; set => temperatur = value; }
/// <summary>
/// Druckanzeige vom Eintrag
/// </summary>
public double Druck { get => druck; set => druck = value; }
}
}