blob: 4254773899cdd689ba807ae480aae8dfbf7138ad (
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
}
|