diff options
author | Alan Pearce | 2015-04-05 15:59:26 +0100 |
---|---|---|
committer | Alan Pearce | 2015-04-05 15:59:26 +0100 |
commit | 115cc1a38c67606909bf3df1cc41d257fa8120ba (patch) | |
tree | 6a103de27c79ff7bee64b16d090c7a9940065b90 /src/Item/BudgetTransaction.php | |
parent | d06ed0b1f4cc014c72d338f3578326e10cc12212 (diff) | |
download | ynab-ledger-115cc1a38c67606909bf3df1cc41d257fa8120ba.tar.lz ynab-ledger-115cc1a38c67606909bf3df1cc41d257fa8120ba.tar.zst ynab-ledger-115cc1a38c67606909bf3df1cc41d257fa8120ba.zip |
Convert: Implement YNAB file parsing
Diffstat (limited to 'src/Item/BudgetTransaction.php')
-rw-r--r-- | src/Item/BudgetTransaction.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Item/BudgetTransaction.php b/src/Item/BudgetTransaction.php new file mode 100644 index 0000000..e4899f9 --- /dev/null +++ b/src/Item/BudgetTransaction.php @@ -0,0 +1,10 @@ +<?php + +namespace YnabLedger\Item; + +class BudgetTransaction { + public $date; + public $category = []; + public $in; + public $out; +} |