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