diff options
Diffstat (limited to 'shared/models/accounts/follow.model.ts')
-rw-r--r-- | shared/models/accounts/follow.model.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts index 80cfe07e4..8094634c1 100644 --- a/shared/models/accounts/follow.model.ts +++ b/shared/models/accounts/follow.model.ts | |||
@@ -1 +1,8 @@ | |||
1 | export type FollowState = 'pending' | 'accepted' | 1 | export type FollowState = 'pending' | 'accepted' |
2 | |||
3 | export interface AccountFollow { | ||
4 | id: number | ||
5 | name: string | ||
6 | score?: number // Used for followers | ||
7 | host: string | ||
8 | } | ||