]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/accounts/follow.model.ts
Save
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / follow.model.ts
index 80cfe07e4816fe696b008777b8d85990c5faee62..cdc3da5602ffc81eeee963ab03aa6ccf0c971e03 100644 (file)
@@ -1 +1,12 @@
+import { Account } from './account.model'
+
 export type FollowState = 'pending' | 'accepted'
+
+export interface AccountFollow {
+  id: number
+  follower: Account
+  following: Account
+  state: FollowState
+  createdAt: Date
+  updatedAt: Date
+}