]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/actor.model.ts
Merge branch 'develop' into pr/1285
[github/Chocobozzz/PeerTube.git] / shared / models / actors / actor.model.ts
1 import { Avatar } from '../avatars/avatar.model'
2
3 export interface Actor {
4 id: number
5 uuid: string
6 url: string
7 name: string
8 host: string
9 followingCount: number
10 followersCount: number
11 createdAt: Date | string
12 updatedAt: Date | string
13 avatar?: Avatar
14 }