15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import { Video } from './video.model'
|
|
|
|
export interface VideoChannel {
|
|
id: number
|
|
name: string
|
|
description: string
|
|
isLocal: boolean
|
|
createdAt: Date | string
|
|
updatedAt: Date | string
|
|
owner?: {
|
|
name: string
|
|
uuid: string
|
|
}
|
|
videos?: Video[]
|
|
}
|