PeerTube/shared/models/videos/video-channel.model.ts

14 lines
265 B
TypeScript
Raw Normal View History

import { Actor } from '../actors/actor.model'
2017-10-24 19:41:09 +02:00
import { Video } from './video.model'
export interface VideoChannel extends Actor {
displayName: string
2017-10-24 19:41:09 +02:00
description: string
isLocal: boolean
owner?: {
name: string
uuid: string
}
videos?: Video[]
}