Geschwindigkeit hinzugefügt aus der CSV datei

This commit is contained in:
HuskyTeufel
2019-05-23 12:56:30 +02:00
parent c182f23ce2
commit d058c00618
2 changed files with 12 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ namespace SanShared
DateTime zeitstempel;
double temperatur;
double druck;
int geschwindigkeit;
/// <summary>
/// Zeitstempel vom Eintrag
/// </summary>
@@ -26,5 +27,9 @@ namespace SanShared
/// Druckanzeige vom Eintrag
/// </summary>
public double Druck { get => druck; set => druck = value; }
/// <summary>
/// Geschwindigkeit vom Eintrag
/// </summary>
public double Geschwindigkeit { get => geschwindigkeit; set => geschwindigkeit = value; }
}
}