diff options
Diffstat (limited to 'shared/models/actors/account.model.ts')
-rw-r--r-- | shared/models/actors/account.model.ts | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts deleted file mode 100644 index 9fbec60ba..000000000 --- a/shared/models/actors/account.model.ts +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | import { ActorImage } from './actor-image.model' | ||
2 | import { Actor } from './actor.model' | ||
3 | |||
4 | export interface Account extends Actor { | ||
5 | displayName: string | ||
6 | description: string | ||
7 | avatars: ActorImage[] | ||
8 | |||
9 | updatedAt: Date | string | ||
10 | |||
11 | userId?: number | ||
12 | } | ||
13 | |||
14 | export interface AccountSummary { | ||
15 | id: number | ||
16 | name: string | ||
17 | displayName: string | ||
18 | url: string | ||
19 | host: string | ||
20 | |||
21 | avatars: ActorImage[] | ||
22 | } | ||