Schachtanbindung angestellt

This commit is contained in:
Husky
2018-07-01 14:57:21 +02:00
parent bf38d340fc
commit b832a0319f
8 changed files with 94 additions and 7 deletions

View File

@@ -11,9 +11,11 @@ namespace KlassenBIB
Guid guid;
DateTime? datum;
bool fertig = false;
string verzeichnispfad;
public Guid Guid { get => guid; set => guid = value; }
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; }
}
}