]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/accounts/follow.model.ts
Save
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / follow.model.ts
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 }