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