]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-channel.model.ts
ee56c54b619b10f47d9e8016ec7d825706b54e2f
[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 description: string
7 isLocal: boolean
8 createdAt: Date | string
9 updatedAt: Date | string
10 owner?: {
11 name: string
12 uuid: string
13 }
14 videos?: Video[]
15 }