]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/actor.model.ts
Merge branch 'release/3.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / actors / actor.model.ts
CommitLineData
f4796856 1import { ActorImage } from './actor-image.model'
60650c77
C
2
3export interface Actor {
4 id: number
60650c77
C
5 url: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
0f320037
C
10 createdAt: Date | string
11 updatedAt: Date | string
f4796856 12 avatar?: ActorImage
60650c77 13}