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

namespace YnabLedger\Item;

class LedgerTransaction {
    public $date;
    public $state;
    public $payee;
    public $note;
    public $postings = [];
}