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

20
KlassenBIB/Projekt.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class Projekt
{
public string Projektnummer { get; set; }
public string ProjektOrt { get; set; }
public AdresseCollection adressen { get; set; }
public Projekt()
{
adressen = new AdresseCollection();
}
}
}