]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-channel.model.ts
Begin moving video channel to actor
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
CommitLineData
72c7248b
C
1import { Video } from './video.model'
2
3export 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}