aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-channel.model.ts
blob: d1a952826f34a3b18833be875000f493c96daa24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Video } from './video.model'

export interface VideoChannel {
  id: number
  name: string
  url: string
  description: string
  isLocal: boolean
  createdAt: Date | string
  updatedAt: Date | string
  owner?: {
    name: string
    uuid: string
  }
  videos?: Video[]
}