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