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