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