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.ts22
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 @@
1import { ActorImage } from './actor-image.model'
2import { Actor } from './actor.model'
3
4export interface Account extends Actor {
5 displayName: string
6 description: string
7 avatars: ActorImage[]
8
9 updatedAt: Date | string
10
11 userId?: number
12}
13
14export interface AccountSummary {
15 id: number
16 name: string
17 displayName: string
18 url: string
19 host: string
20
21 avatars: ActorImage[]
22}