PeerTube/shared/models/videos/video-channel.model.ts

17 lines
279 B
TypeScript
Raw Normal View History

2017-10-24 19:41:09 +02:00
import { Video } from './video.model'
export interface VideoChannel {
id: number
name: string
2018-01-04 11:19:16 +01:00
url: string
2017-10-24 19:41:09 +02:00
description: string
isLocal: boolean
createdAt: Date | string
updatedAt: Date | string
owner?: {
name: string
uuid: string
}
videos?: Video[]
}