blob: e2a56617d6da8d88f687dcc56d2d2e2e2382eb82 (
plain) (
tree)
|
|
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
magnetUri: string
torrentName: string
createdAt: string
updatedAt: string
state: VideoConstant<VideoImportState>
error?: string
video?: Video & { tags: string[] }
}
|