diff options
Diffstat (limited to 'app/domain/account.js')
| -rw-r--r-- | app/domain/account.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/domain/account.js b/app/domain/account.js new file mode 100644 index 0000000..918c47c --- /dev/null +++ b/app/domain/account.js @@ -0,0 +1,8 @@ +export default class Account { +} +Account.schema = { + name: 'Account', + properties: { + authentication_token: 'string' + } +}; |
