feat(client): show real data

This commit is contained in:
eneller
2026-07-23 18:49:44 +02:00
parent e8f8cfbe99
commit ed6c8cc413
12 changed files with 77 additions and 40 deletions

View File

@@ -8,6 +8,6 @@ export class LoginRequest{
export class LoginResponse{
constructor(
public user: Account,
public ownedBusinesses: Account[],
public ownedAccounts: Account[],
){}
}

View File

@@ -1,5 +1,6 @@
export class SendRequest{
constructor(
public senderID: string,
public recipientID: string,
public amount: number,
public reference: string

View File

@@ -2,6 +2,7 @@ import Transaction from "../model/transaction";
export class TransactionsRequest{
constructor(
public forId: string,
public offset = 0,
public count = 50,
){}