Initial COmmit
This commit is contained in:
14
KanSan/Kunden.cs
Normal file
14
KanSan/Kunden.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user