1
0
Fork 0
peertube/shared/models/videos/video-channel.model.ts

16 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[]
}