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

                                     

                                             

                     





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

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