aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-import.model.ts
blob: a5c582c678d5dacc06af5d2f203a71e5da3b193c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Video } from './video.model'
import { VideoConstant } from './video-constant.model'
import { VideoImportState } from './video-import-state.enum'

export interface VideoImport {
  id: number
  targetUrl: string
  createdAt: string
  updatedAt: string
  state: VideoConstant<VideoImportState>
  error?: string

  video?: Video & { tags: string[] }
}