]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-channel.model.ts
Video channel API routes refractor
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
CommitLineData
60650c77 1import { Actor } from '../actors/actor.model'
72c7248b
C
2import { Video } from './video.model'
3
60650c77
C
4export interface VideoChannel extends Actor {
5 displayName: string
72c7248b 6 description: string
2422c46b 7 support: string
72c7248b 8 isLocal: boolean
6b738c7a
C
9 ownerAccount?: {
10 id: number
72c7248b
C
11 uuid: string
12 }
72c7248b 13}