14 lines
480 B
C#
14 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Models {
|
|
public class Bauvorhaben {
|
|
Auftraggeber auftraggeber;
|
|
public Auftraggeber Auftraggeber {get => auftraggeber; set => auftraggeber = value;}
|
|
public string Standort = string.Empty;
|
|
public string Strasse = string.Empty;
|
|
public string Ort = string.Empty;
|
|
public IEnumerable<Inspektionsobjekt> Prüfobjekte = new List<Inspektionsobjekt>();
|
|
}
|
|
} |