aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/channel/video-channel.model.ts
blob: 92918f66cae1133a447b7faec249fe8331b858d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Actor } from '../../actors/actor.model'
import { Video } from '../video.model'
import { Account } from '../../actors/index'

export interface VideoChannel extends Actor {
  displayName: string
  description: string
  support: string
  isLocal: boolean
  ownerAccount?: Account
}