2018-01-11 09:35:50 +01:00
|
|
|
import { Actor } from '../actors/actor.model'
|
2017-10-24 19:41:09 +02:00
|
|
|
import { Video } from './video.model'
|
2018-05-23 11:38:00 +02:00
|
|
|
import { Account } from '../actors'
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2018-01-11 09:35:50 +01:00
|
|
|
export interface VideoChannel extends Actor {
|
|
|
|
displayName: string
|
2017-10-24 19:41:09 +02:00
|
|
|
description: string
|
2018-02-15 14:46:26 +01:00
|
|
|
support: string
|
2017-10-24 19:41:09 +02:00
|
|
|
isLocal: boolean
|
2018-05-23 11:38:00 +02:00
|
|
|
ownerAccount?: Account
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|