Files
MainSoftware/Models/Bauvorhaben.cs
2022-05-30 15:51:01 +02:00

20 lines
559 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 List<Inspektionsobjekt> Prüfobjekte { get; set; }
override public string ToString()
{
return String.Format("{0} - {1}", Standort, Strasse);
}
}
}