mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
21 lines
379 B
TypeScript
21 lines
379 B
TypeScript
import { User } from '../../entity/User'
|
|
|
|
export interface TransactionContext {
|
|
typeId: number
|
|
userId: number
|
|
balance: BigInt
|
|
balanceDate: Date
|
|
amount: BigInt
|
|
memo: string
|
|
creationDate?: Date
|
|
sendReceiverUserId?: number
|
|
sendSenderFinalBalance?: BigInt
|
|
}
|
|
|
|
export interface BalanceContext {
|
|
modified?: Date
|
|
recordDate?: Date
|
|
amount?: number
|
|
user?: User
|
|
}
|