21 lines
549 B
C#
21 lines
549 B
C#
using KanSan.Base.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.Base.Models
|
|
{
|
|
public class Kunde : IDatabaseEntry
|
|
{
|
|
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>();
|
|
|
|
}
|
|
}
|