blob: 008c5a1be3074dfcbc673ef2a6c4b6817ab6bbc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace YnabLedger\Item;
class LedgerTransaction {
public $date;
public $state;
public $payee;
public $note;
public $postings = [];
public $isVirtual = false;
}
|