20 lines
486 B
C#
20 lines
486 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models {
|
|
[Serializable]
|
|
public class Auftraggeber {
|
|
public int Id {get;set;}
|
|
public string Name {get;set;}
|
|
public string Ort {get;set;}
|
|
public string Strasse {get;set;}
|
|
public string Tel {get;set;}
|
|
public List<Bauvorhaben> Baustellen { get; set; }
|
|
|
|
override public string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
} |