fix: send api

This commit is contained in:
eneller
2026-03-18 10:27:26 +01:00
parent 823d696d86
commit 7f3326c4a5
5 changed files with 38 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
export class SendRequest{
constructor(
public recipientID: string,
public amount: number,
public reference: string
){}
}
export class SendResponse{
constructor(
public balance: number,
public message: string
){}
}