1
0
Fork 0
peertube/shared/models/accounts/follow.model.ts
2017-11-27 19:40:52 +01:00

12 lines
239 B
TypeScript

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
}