diff options
Diffstat (limited to 'shared/models/actors/account.model.ts')
-rw-r--r-- | shared/models/actors/account.model.ts | 14 |
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 @@ | |||
1 | import { Avatar } from '../avatars/avatar.model' | 1 | import { Actor } from './actor.model' |
2 | 2 | ||
3 | export interface Account { | 3 | export 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 | } |