3rd Rewrite of everything

Completly rewrote the project from scratch
This commit is contained in:
Stefan
2021-04-13 21:11:49 +02:00
parent b6ae111aee
commit 19579405fe
138 changed files with 2470 additions and 3227 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace Superbuchhaltungv3
{
public class Buchung
{
public float Wert { get; set; }
public string GegenKonto { get; set; }
public Buchung(float wert, string gegenKonto)
{
Wert = wert;
GegenKonto = gegenKonto;
}
}
}