about summary refs log tree commit diff stats
path: root/src/Item/BudgetTransaction.php
blob: e073ed22970fd3754dfb0a57e0552d766984137b (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace YnabLedger\Item;

class BudgetTransaction {
    public $date;
    public $category = [];
    public $in;
    public $out;
    public $currency;
}