13 lines
343 B
C#
13 lines
343 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models {
|
|
public class Auftraggeber {
|
|
public string Name ="";
|
|
public string Ort = "";
|
|
public string Strasse = "";
|
|
public string Tel = "";
|
|
public IEnumerable<Bauvorhaben> Baustellen = new List<Bauvorhaben>();
|
|
}
|
|
} |