Add firstTransaction boolean to TransactionList.

This commit is contained in:
ogerly 2022-02-07 11:14:07 +01:00 committed by elweyn
parent a1f73514dd
commit 801033138f

View File

@ -11,6 +11,7 @@ export class TransactionList {
this.balance = 0
this.decay = 0
this.decayDate = ''
this.firstTransaction = false
}
@Field(() => Number)
@ -30,4 +31,7 @@ export class TransactionList {
@Field(() => [Transaction])
transactions: Transaction[]
@Field(() => Boolean)
firstTransaction: boolean
}