using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KlassenBIB { /// /// /// public abstract class Sanieren : Sanierung { DateTime datum = new DateTime(); bool fertig = false; string verzeichnispfad; /// /// /// public string Besatzung { get; set; } /// /// /// public DateTime Datum { get => datum; set => datum = value; } /// /// /// public bool Fertig { get => fertig; set => fertig = value; } /// /// /// public string Verzeichnispfad { get => verzeichnispfad; protected set => verzeichnispfad = value; } } }