ledger account service basis

This commit is contained in:
Stephan D
2026-01-22 01:00:55 +01:00
parent 62ff96b90e
commit 8e46bc6061
22 changed files with 118 additions and 65 deletions

View File

@@ -0,0 +1,9 @@
class Money {
final String amount;
final String currency;
const Money({
required this.amount,
required this.currency,
});
}