Initial COmmit

This commit is contained in:
Husky
2020-02-12 13:12:55 +01:00
commit 2f508df281
18 changed files with 638 additions and 0 deletions

14
KanSan/Kunden.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
namespace KanSan
{
public class Kunden
{
public Guid KundenID { get; set; }
public string Vorname { get; set; }
public string Nachname { get; set; }
public List<Baustelle> Baustellen { get; } = new List<Baustelle>();
}
}