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

17 lines
279 B
TypeScript
Raw Normal View History

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