Update TransactionInputRow to new models

This commit is contained in:
2022-02-25 21:19:34 +00:00
parent be3829baf8
commit 306edbf817
2 changed files with 33 additions and 18 deletions

View File

@ -18,12 +18,12 @@ export interface Transaction {
TransferAccount: string,
CategoryGroup: string,
Category: string,
CategoryID: string,
CategoryID: string | undefined,
Memo: string,
Status: string,
GroupID: string,
Payee: string,
PayeeID: string,
PayeeID: string | undefined,
Amount: number,
}