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

namespace YnabLedger\Item;

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