blob: 02fbcc315a1ab09e7a51a76f4dee5a482282de14 (
plain) (
tree)
|
|
import { Actor } from '../actors/actor.model'
import { Video } from './video.model'
export interface VideoChannel extends Actor {
displayName: string
description: string
support: string
isLocal: boolean
ownerAccount?: {
id: number
uuid: string
}
}
|