Straßenliste code cleanup

radiobuttons hinzugefügt, noch kein Funktion
This commit is contained in:
HuskyTeufel
2021-04-09 11:58:05 +02:00
parent 3fb135459a
commit 88323fcd29
4 changed files with 64 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
namespace SanSystem
{
class StrassenContent
{
public string Strassename;
public int AnzahlObjekte;
public int AnzahlFertig;
public override string ToString()
{
return string.Format("{0} ({1} / {2})", Strassename, AnzahlFertig, AnzahlObjekte);
}
}
}