]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-channel.model.ts
Add owner in video channel page
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
1 import { Actor } from '../actors/actor.model'
2 import { Video } from './video.model'
3 import { Account } from '../actors'
4
5 export interface VideoChannel extends Actor {
6 displayName: string
7 description: string
8 support: string
9 isLocal: boolean
10 ownerAccount?: Account
11 }