]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-channel.model.ts
Add ability to delete comments
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
1 import { Video } from './video.model'
2
3 export interface VideoChannel {
4 id: number
5 name: string
6 url: string
7 description: string
8 isLocal: boolean
9 createdAt: Date | string
10 updatedAt: Date | string
11 owner?: {
12 name: string
13 uuid: string
14 }
15 videos?: Video[]
16 }