mirror of
https://github.com/Stefan-5422/Superbuchaltung.git
synced 2026-09-04 00:46:04 +02:00
13 lines
295 B
C#
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;
|
|
}
|
|
}
|
|
} |