Einbauprotokoll angepasst

This commit is contained in:
HuskyTeufel
2020-03-18 12:10:49 +01:00
parent 2e25d523de
commit bb59ec3665
10 changed files with 77 additions and 328 deletions

View File

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