mirror of
https://github.com/Stefan-5422/Superbuchaltung.git
synced 2026-09-04 08:56:03 +02:00
3rd Rewrite of everything
Completly rewrote the project from scratch
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user