2018-01-11 03:35:50 -05:00
|
|
|
import { Actor } from '../actors/actor.model'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { Video } from './video.model'
|
|
|
|
|
2018-01-11 03:35:50 -05:00
|
|
|
export interface VideoChannel extends Actor {
|
|
|
|
displayName: string
|
2017-10-24 13:41:09 -04:00
|
|
|
description: string
|
|
|
|
isLocal: boolean
|
|
|
|
owner?: {
|
|
|
|
name: string
|
|
|
|
uuid: string
|
|
|
|
}
|
|
|
|
videos?: Video[]
|
|
|
|
}
|