]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-channel.model.ts
Add scores to follows and remove bad ones
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
1 import { Actor } from '../actors/actor.model'
2 import { Video } from './video.model'
3
4 export interface VideoChannel extends Actor {
5 displayName: string
6 description: string
7 isLocal: boolean
8 owner?: {
9 name: string
10 uuid: string
11 }
12 videos?: Video[]
13 }