Files
MainSoftware/Models/Bauvorhaben.cs
HuskyTeufel 663448739a -a
2021-05-07 16:30:41 +02:00

15 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Models {
[Serializable]
public class Bauvorhaben {
public Auftraggeber Auftraggeber { get; set; }
public int Id { get; set; }
public string Standort { get; set; }
public string Strasse { get; set; }
public string Ort { get; set; }
public IEnumerable<Inspektionsobjekt> Prüfobjekte { get; set; }
}
}