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