blob: e76084e067ae608ffeadb88a6c8ea2c464ac57b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { VideoUpdate } from './video-update.model'
export interface VideoImportCreate extends VideoUpdate {
targetUrl?: string
magnetUri?: string
torrentfile?: Blob
channelId: number // Required
}
|