Files
Superbuchaltung/Superbuchhaltungv3/Buchung.cs
T
Stefan 19579405fe 3rd Rewrite of everything
Completly rewrote the project from scratch
2021-04-13 21:11:49 +02:00

13 lines
295 B
C#

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;
}
}
}