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.ts14
1 files changed, 2 insertions, 12 deletions
diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts
index e4dbc81e5..5cc12c18f 100644
--- a/shared/models/actors/account.model.ts
+++ b/shared/models/actors/account.model.ts
@@ -1,15 +1,5 @@
1import { Avatar } from '../avatars/avatar.model' 1import { Actor } from './actor.model'
2 2
3export interface Account { 3export interface Account extends Actor {
4 id: number
5 uuid: string
6 url: string
7 name: string
8 displayName: string 4 displayName: string
9 host: string
10 followingCount: number
11 followersCount: number
12 createdAt: Date
13 updatedAt: Date
14 avatar: Avatar
15} 5}