Es werden nun mehrere Sanierungen hinzugefügt

This commit is contained in:
Husky
2018-07-01 13:13:20 +02:00
parent c43f27eea0
commit 33f39b1ac7
16 changed files with 1155 additions and 550 deletions

View File

@@ -15,6 +15,8 @@ namespace KlassenBIB
DateTime datumKalibrierung;
string harzChargenummer;
string linerChargenummer;
string harzTyp;
string linerTyp;
double harzbedarf = 1.8;
uint rueckholgeschwindigkeit = 24;
bool geschlosseneEnde = false;
@@ -56,5 +58,7 @@ namespace KlassenBIB
public uint Rueckholgeschwindigkeit { get => rueckholgeschwindigkeit; set => rueckholgeschwindigkeit = value; }
public bool GeschlosseneEnde { get => geschlosseneEnde; set => geschlosseneEnde = value; }
public double HarzBedarf { get => harzbedarf; set => harzbedarf = value; }
public string HarzTyp { get => harzTyp; set => harzTyp = value; }
public string LinerTyp { get => linerTyp; set => linerTyp = value; }
}
}