diff options
Diffstat (limited to 'shared/models/actors/follow.model.ts')
-rw-r--r-- | shared/models/actors/follow.model.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shared/models/actors/follow.model.ts b/shared/models/actors/follow.model.ts new file mode 100644 index 000000000..cdc3da560 --- /dev/null +++ b/shared/models/actors/follow.model.ts | |||
@@ -0,0 +1,12 @@ | |||
1 | import { Account } from './account.model' | ||
2 | |||
3 | export type FollowState = 'pending' | 'accepted' | ||
4 | |||
5 | export interface AccountFollow { | ||
6 | id: number | ||
7 | follower: Account | ||
8 | following: Account | ||
9 | state: FollowState | ||
10 | createdAt: Date | ||
11 | updatedAt: Date | ||
12 | } | ||