Straßenliste code cleanup
radiobuttons hinzugefügt, noch kein Funktion
This commit is contained in:
15
SanSystem/StrassenContent.cs
Normal file
15
SanSystem/StrassenContent.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user