about summary refs log tree commit diff stats
path: root/src/Item/LedgerPosting.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Item/LedgerPosting.php')
-rw-r--r--src/Item/LedgerPosting.php11
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;
+}