about summary refs log tree commit diff stats
path: root/src/Item/RegisterTransaction.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Item/RegisterTransaction.php')
-rw-r--r--src/Item/RegisterTransaction.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Item/RegisterTransaction.php b/src/Item/RegisterTransaction.php
new file mode 100644
index 0000000..b676640
--- /dev/null
+++ b/src/Item/RegisterTransaction.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace YnabLedger\Item;
+
+class RegisterTransaction {
+    public $line;
+    public $account;
+    public $date;
+    public $payee;
+    public $category;
+    public $memo;
+    public $out;
+    public $in;
+    public $cleared = false;
+}