Geschwindigkeit hinzugefügt aus der CSV datei
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user