Initial commit

This commit is contained in:
Husky
2018-05-16 17:24:22 +02:00
parent cb42b4e98a
commit 374eecf21d
17 changed files with 567 additions and 0 deletions

21
KlassenBIB/Strasse.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class Strasse
{
public string Strassename { get; set; }
public string Ort { get; set; }
public AbwasserTechnischeAnlageCollection objekte { get; set; }
public Strasse()
{
objekte = new AbwasserTechnischeAnlageCollection();
}
}
}