aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/accounts/account.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/accounts/account.model.ts')
-rw-r--r--shared/models/accounts/account.model.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/models/accounts/account.model.ts b/shared/models/accounts/account.model.ts
index 338426dc7..d14701317 100644
--- a/shared/models/accounts/account.model.ts
+++ b/shared/models/accounts/account.model.ts
@@ -1,5 +1,13 @@
1import { Avatar } from '../avatars/avatar.model'
2
1export interface Account { 3export interface Account {
2 id: number 4 id: number
5 uuid: string
3 name: string 6 name: string
4 host: string 7 host: string
8 followingCount: number
9 followersCount: number
10 createdAt: Date
11 updatedAt: Date
12 avatar: Avatar
5} 13}