2021-04-06 04:35:56 -05:00
|
|
|
import { ActorImage } from './actor-image.model'
|
2018-01-11 02:35:50 -06:00
|
|
|
|
|
|
|
export interface Actor {
|
|
|
|
id: number
|
|
|
|
url: string
|
|
|
|
name: string
|
|
|
|
host: string
|
|
|
|
followingCount: number
|
|
|
|
followersCount: number
|
2018-05-11 08:10:13 -05:00
|
|
|
createdAt: Date | string
|
2021-04-06 04:35:56 -05:00
|
|
|
avatar?: ActorImage
|
2018-01-11 02:35:50 -06:00
|
|
|
}
|