20 lines
515 B
C#
20 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.CrossCutting.DataClasses
|
|
{
|
|
public class Kunde
|
|
{
|
|
public int ID { get; set; }
|
|
public Guid GuidNr { get; set; }
|
|
public string Vorname { get; set; }
|
|
public string Nachname { get; set; }
|
|
public string Strasse { get; set; }
|
|
public string PLZ { get; set; }
|
|
public string Ort { get; set; }
|
|
public List<Projekt> Baustellen { get; } = new List<Projekt>();
|
|
|
|
}
|
|
}
|