2017-11-20 04:19:23 -06:00
|
|
|
import { Account } from './account.model'
|
|
|
|
|
2017-11-13 10:39:41 -06:00
|
|
|
export type FollowState = 'pending' | 'accepted'
|
2017-11-15 04:00:25 -06:00
|
|
|
|
|
|
|
export interface AccountFollow {
|
|
|
|
id: number
|
2017-11-20 04:19:23 -06:00
|
|
|
follower: Account
|
|
|
|
following: Account
|
|
|
|
state: FollowState
|
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
2017-11-15 04:00:25 -06:00
|
|
|
}
|