]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/actor.model.ts
Add quota used in users list
[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 }