]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/actor.model.ts
Remove unused actor uuid field
[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 url: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
10 createdAt: Date | string
11 updatedAt: Date | string
12 avatar?: Avatar
13 }