14 lines
399 B
C#
14 lines
399 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models {
|
|
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 IEnumerable<Bauvorhaben> Baustellen = new List<Bauvorhaben>();
|
|
}
|
|
} |