summaryrefslogtreecommitdiff
path: root/gui/src/types/dtos
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/types/dtos')
-rw-r--r--gui/src/types/dtos/accountDto.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/src/types/dtos/accountDto.ts b/gui/src/types/dtos/accountDto.ts
new file mode 100644
index 0000000..0ed7622
--- /dev/null
+++ b/gui/src/types/dtos/accountDto.ts
@@ -0,0 +1,8 @@
+interface AccountDto {
+ readonly id: number;
+ readonly name: string;
+ readonly openingBalance: number;
+ readonly openingDate: string;
+}
+
+export default AccountDto;