]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/actor.model.ts
Reorganize client shared modules
[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
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
457bb213 12 avatar?: Avatar
60650c77 13}