aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/videos/video-channel.model.ts
blob: 470295a817e5912bf525fd0d6acefa693bcc24bf (plain) (tree)
1
2
3
4
5
6
7
8
                                             

                                     

                                             
                     
                 
                  





                  
import { Actor } from '../actors/actor.model'
import { Video } from './video.model'

export interface VideoChannel extends Actor {
  displayName: string
  description: string
  support: string
  isLocal: boolean
  owner?: {
    name: string
    uuid: string
  }
  videos?: Video[]
}