Objektname wird hinzugefügt

This commit is contained in:
Husky
2018-06-30 22:26:56 +02:00
parent f8a85bdc68
commit 94067efce2
9 changed files with 98 additions and 50 deletions

19
KlassenBIB/Sanieren.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public abstract class Sanieren : Sanierung
{
Guid guid;
DateTime datum;
bool fertig = false;
public Guid Guid { get => guid; set => guid = value; }
public DateTime Datum { get => datum; set => datum = value; }
public bool Fertig { get => fertig; set => fertig = value; }
}
}