feat(accounts): add accounts and shared accounts call

This commit is contained in:
2021-11-04 02:04:59 +01:00
parent e3f2e12df4
commit a169862311
5 changed files with 53 additions and 20 deletions

5
src/dto/Account.js Normal file
View File

@@ -0,0 +1,5 @@
class Account {
constructor(name) {
this.name = name
}
}