blob: d1a952826f34a3b18833be875000f493c96daa24 (
plain) (
tree)
|
|
import { Video } from './video.model'
export interface VideoChannel {
id: number
name: string
url: string
description: string
isLocal: boolean
createdAt: Date | string
updatedAt: Date | string
owner?: {
name: string
uuid: string
}
videos?: Video[]
}
|