summaryrefslogtreecommitdiff
path: root/src/services/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/types.ts')
-rw-r--r--src/services/types.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/services/types.ts b/src/services/types.ts
index 6fa5f30..228bc4d 100644
--- a/src/services/types.ts
+++ b/src/services/types.ts
@@ -7,6 +7,7 @@ interface BaseModel {
export interface Account extends BaseModel {
name: string;
code: string;
+ currency: string;
balance: number;
}