diff options
Diffstat (limited to 'src/Item/LedgerPosting.php')
-rw-r--r-- | src/Item/LedgerPosting.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Item/LedgerPosting.php b/src/Item/LedgerPosting.php new file mode 100644 index 0000000..79aeb49 --- /dev/null +++ b/src/Item/LedgerPosting.php @@ -0,0 +1,11 @@ +<?php + +namespace YnabLedger\Item; + +class LedgerPosting { + public $account = []; + public $isVirtual = false; + public $amount; + public $currency; + public $note; +} |